More RESTish URL (/notice/:notice/delete) for notice delete

Also returns to 'top' now after notice deletion.
This commit is contained in:
Mikael Nordfeldth
2015-07-11 11:26:48 +02:00
parent 7d524307d2
commit ac98600640
2 changed files with 3 additions and 11 deletions

View File

@@ -244,12 +244,10 @@ class Router
array('action' => 'shownotice'),
array('notice' => '[0-9]+'));
$m->connect('notice/delete/:notice',
$m->connect('notice/:notice/delete',
array('action' => 'deletenotice'),
array('notice' => '[0-9]+'));
$m->connect('notice/delete', array('action' => 'deletenotice'));
// conversation
$m->connect('conversation/:id',