Example #1
0
def reregister_account(account_id):
    try:
        account = AccountManager().get_account(account_id)
    except KeyError:
        return error_response(404, 'account not found')
    if account is BonjourAccount():
        return error_response(403, 'bonjour account does not register')
    account.reregister()
    return ''