diff options
author | Brion Vibber <brion@pobox.com> | 2009-10-04 16:16:52 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-10-04 16:16:52 -0700 |
commit | 4462a1c63600fa83d2692ac2de8067b12b1eeac9 (patch) | |
tree | a946b98184eb32b5be4bf64e67357c06e8d0f65d /lib/router.php | |
parent | 9235c1437e542d2b565d2d2d36fe2b7561e4d5f7 (diff) | |
parent | 2f065d687dc76bfbac3e1b7b3dcccf544f4b4987 (diff) |
Merge branch '0.9.x' of git://gitorious.org/statusnet/mainline into 0.9.x
Diffstat (limited to 'lib/router.php')
-rw-r--r-- | lib/router.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/router.php b/lib/router.php index c18f273ed..91f886bce 100644 --- a/lib/router.php +++ b/lib/router.php @@ -241,6 +241,10 @@ class Router array('nickname' => '[a-zA-Z0-9]+')); } + $m->connect('group/:nickname/foaf', + array('action' => 'foafgroup'), + array('nickname' => '[a-zA-Z0-9]+')); + $m->connect('group/:nickname/blocked', array('action' => 'blockedfromgroup'), array('nickname' => '[a-zA-Z0-9]+')); |