Changeset 63 in bookmarks for trunk/app.psgi
- Timestamp:
- 09/06/13 11:47:20 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/app.psgi
r61 r63 48 48 49 49 # create the bookmark and redirect to the new bookmark's edit form 50 return $controller->create ;50 return $controller->create_and_redirect; 51 51 }; 52 52 }; … … 85 85 my $controller = get_controller($req); 86 86 87 return $controller->edit($params->{id}); 88 89 return [200, ['Content-Type' => 'text/plain'], ['update ', $params->{id}]]; 87 return $controller->update_and_redirect($params->{id}); 90 88 }; 91 89 };
Note: See TracChangeset
for help on using the changeset viewer.