diff options
author | Christoph Wurst <christoph@owncloud.com> | 2016-05-18 12:03:22 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@owncloud.com> | 2016-05-23 09:11:12 +0200 |
commit | 12431aa3997154aaea4eec11c2dd65f9e5dbe179 (patch) | |
tree | 8395c270b144401f53e5ed048f94a28002410e3d /settings/routes.php | |
parent | 357d342467b9200f190376a2bd224fa7b803b45a (diff) | |
download | nextcloud-server-12431aa3997154aaea4eec11c2dd65f9e5dbe179.tar.gz nextcloud-server-12431aa3997154aaea4eec11c2dd65f9e5dbe179.zip |
list user's auth tokens on the personal settings page
Diffstat (limited to 'settings/routes.php')
-rw-r--r-- | settings/routes.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/settings/routes.php b/settings/routes.php index 90e1d1e442b..5c356e01734 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -36,7 +36,8 @@ $application = new Application(); $application->registerRoutes($this, [ 'resources' => [ 'groups' => ['url' => '/settings/users/groups'], - 'users' => ['url' => '/settings/users/users'] + 'users' => ['url' => '/settings/users/users'], + 'AuthSettings' => ['url' => '/settings/personal/authtokens'], ], 'routes' => [ ['name' => 'MailSettings#setMailSettings', 'url' => '/settings/admin/mailsettings', 'verb' => 'POST'], |