summaryrefslogtreecommitdiff
path: root/lib/router.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-10-01 16:17:43 -0700
committerZach Copley <zach@status.net>2009-10-01 16:17:43 -0700
commitb3bbaecf47d74102a2ed48cd0c773d33a4a49d59 (patch)
tree5aed1f7150ac6a988148499cd8beae8b1854648f /lib/router.php
parentb0ddb971e61bd98250c41e653ab2e649a9b08926 (diff)
parentf65baaaa4f48b84392200bb54161887669440cab (diff)
Merge branch '0.9.x' into refactor-api
* 0.9.x: change DB so OpenIDPlugin manages OpenID tables Some bug fixes check the schema add some more methods to Schema Added hook for Aside container Revert "Outputting UTF-8 charset in document header irrespective of mimetype." FOAF for Groups. use schema tool to create a table statusize schema-related modules test script for schema code make table def method of schema code work start a module for schema management
Diffstat (limited to 'lib/router.php')
-rw-r--r--lib/router.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/router.php b/lib/router.php
index 1ea06afe0..3de4e322f 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]+'));