diff options
author | Zach Copley <zach@status.net> | 2009-11-09 23:13:59 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-09 23:13:59 -0800 |
commit | 312c745884654a461ed6da22eebe78f07f500426 (patch) | |
tree | 500f1ee28e4dd5ef1ca32b758d3a9912370dc4fb /lib | |
parent | 322a4c3ed1536eede0607112116ee46d592fc9a9 (diff) |
Implement /api/account/update_profile.format
Diffstat (limited to 'lib')
-rw-r--r-- | lib/router.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/router.php b/lib/router.php index 03f6036b2..35f43e5cb 100644 --- a/lib/router.php +++ b/lib/router.php @@ -428,6 +428,9 @@ class Router $m->connect('api/account/verify_credentials.:format', array('action' => 'ApiAccountVerifyCredentials')); + $m->connect('api/account/update_profile.:format', + array('action' => 'ApiAccountUpdateProfile')); + $m->connect('api/account/update_profile_image.:format', array('action' => 'ApiAccountUpdateProfileImage')); |