diff options
author | Zach Copley <zach@status.net> | 2009-11-12 19:42:18 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-24 16:36:01 -0800 |
commit | ae46bc5fff21120ef867fb8ab59833a8f26adf47 (patch) | |
tree | 32e3a2cbccb6343b9dc6c141b7867c6e82c38cfb /lib/router.php | |
parent | efd84cadc03f005fd04c76ac35fb8d40f3680644 (diff) |
Started work on interface for displaying connected OAuth apps
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/router.php b/lib/router.php index 6b87ed27f..9b2aa025e 100644 --- a/lib/router.php +++ b/lib/router.php @@ -140,11 +140,13 @@ class Router // settings - foreach (array('profile', 'avatar', 'password', 'im', + foreach (array('profile', 'avatar', 'password', 'im', 'application', 'email', 'sms', 'userdesign', 'other') as $s) { $m->connect('settings/'.$s, array('action' => $s.'settings')); } + $m->connect('settings/oauthclients', array('action' => 'oauthclients')); + // search foreach (array('group', 'people', 'notice') as $s) { |