diff options
author | Toby Inkster <mail@tobyinkster.co.uk> | 2009-09-30 13:12:17 +0100 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-09-30 13:59:18 -0400 |
commit | c5be2962ad6fa4f78a4892005bc6a342de89c5d0 (patch) | |
tree | 7bf3f89b9e576a8fdfc5c2c111be7e5e7a0fe250 /lib | |
parent | a57783de0214f061eca3ab65880f573e8668de03 (diff) |
FOAF for Groups.
Diffstat (limited to 'lib')
-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]+')); |