diff options
author | Zach Copley <zach@status.net> | 2009-11-12 19:42:18 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-14 02:41:04 +0000 |
commit | 5bff6651bab35817e4e795f4c325fece3fb1522f (patch) | |
tree | f4ee7aca3ff629282b6284fcbaad4f4a6de709c5 /lib/router.php | |
parent | 6e64ce37778abe1494853997df4164dd80eff7ec (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) { |