diff options
author | Zach Copley <zach@status.net> | 2009-11-08 15:29:04 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-08 15:29:04 -0800 |
commit | 5c091dab9be50d6955755c1420c09070ea2da7b6 (patch) | |
tree | 2911b8a43a19b258d094ca8dfc0a82dd7e482498 /lib | |
parent | da444f8a15043f326aa9a629ba5f0b25bc35b1e5 (diff) |
Implement /api/account/update_profile_background_image.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 db9fdb470..d47828d1c 100644 --- a/lib/router.php +++ b/lib/router.php @@ -431,6 +431,9 @@ class Router $m->connect('api/account/update_profile_image.:format', array('action' => 'ApiAccountUpdateProfileImage')); + $m->connect('api/account/update_profile_background_image.:format', + array('action' => 'ApiAccountUpdateProfileBackgroundImage')); + // special case where verify_credentials is called w/out a format $m->connect('api/account/verify_credentials', |