Compare commits

..

1 Commits

Author SHA1 Message Date
Lexi / Zoe 87928dbbc9
Update to PHP 7.4 2021-09-12 21:33:35 +02:00
1 changed files with 0 additions and 18 deletions

View File

@ -71,7 +71,6 @@ class AccountController extends BaseController
$accountId = (int)$args['id']; $accountId = (int)$args['id'];
// Get account data from database // Get account data from database
// TODO use account handler
$account = $this->accountRepository->fetchAccountById($accountId); $account = $this->accountRepository->fetchAccountById($accountId);
$renderData = [ $renderData = [
@ -147,20 +146,3 @@ class AccountController extends BaseController
return $this->showAccountDelete($request, $response, $args); return $this->showAccountDelete($request, $response, $args);
} }
} }
/*
* TODO:
* ACCOUNTS:
* - "edit account" page
* --> maybe show page == edit page? (maybe '/accounts/{id}[/edit]' route)
* - "delete account" page
* - add/edit/delete aliases for accounts
* - list page: checkboxes for mass editing/deleting? (maybe only deleting, mass editing sounds like pita)
* - list page: checkbox similar to 'show detail columns' -> 'show aliases'?
* - "create account" page
* - edit/create: random password generator
*
* ALIASES:
* - list of aliases (filter by domain, filter by account)
* - edit aliases...? maybe just link to the account edit page
*/