summaryrefslogtreecommitdiff
path: root/core/config/routes.php
diff options
context:
space:
mode:
authorJozef Selesi <jozefs@users.sourceforge.net>2008-11-20 01:25:29 +0000
committerJozef Selesi <jozefs@users.sourceforge.net>2008-11-20 01:25:29 +0000
commitc3fc1cb7ec91783a7953486c8a83aa8008dd5406 (patch)
tree15aec3f9705edbe2c33db5d3a0b78c50860b0160 /core/config/routes.php
parentbd76b2e89f0caa2773e62192ef5d3b769c8ed6f8 (diff)
* Added HTTP status constants and helper functions to REST helper.
* HTTP header setting in comment module now going through REST helper API. * Fixed items controller test. * Fixed user installer test. * Fixed _create() handling in the REST controller. * Fixed routing for edit and add forms. * Added some tests for the REST controller. * Set svn:eol-style to LF on a bunch of files. * Added preamble to MY_Forge.php.
Diffstat (limited to 'core/config/routes.php')
-rw-r--r--core/config/routes.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/config/routes.php b/core/config/routes.php
index 9e86def6..9e36f881 100644
--- a/core/config/routes.php
+++ b/core/config/routes.php
@@ -21,5 +21,8 @@
// The abstract REST_Controller is not directly routable.
$config['^rest\b.*'] = null;
+// Redirect /form/add and /form/edit to REST_Controller.
+$config['^form/(edit|add)/(\w+)/(.*)$'] = '$2/form_$1/$3';
+
// For now our default page is the scaffolding.
$config['_default'] = 'welcome';