@@ -52,12 +52,12 @@ discard block |
||
| 52 | 52 | 'setting' => 'app_name', |
| 53 | 53 | 'as' => 'projects.', |
| 54 | 54 | ], function ($router) { |
| 55 | - $router->get('{owner_path}/{project_path}', [ |
|
| 55 | + $router->get('{owner_path}/{project_path}', [ |
|
| 56 | 56 | 'as' => 'project_show', |
| 57 | 57 | 'uses' => 'ProjectsController@showAction', |
| 58 | 58 | ])->where('owner_path', '[a-zA-z.0-9_\-]+')->where('project_path', '[a-zA-z.0-9_\-]+'); |
| 59 | 59 | |
| 60 | - $router->get('{owner_path}/{project_path}/edit', [ |
|
| 60 | + $router->get('{owner_path}/{project_path}/edit', [ |
|
| 61 | 61 | 'as' => 'project_edit', |
| 62 | 62 | 'uses' => 'ProjectsController@editAction', |
| 63 | 63 | ])->where('owner_path', '[a-zA-z.0-9_\-]+')->where('project_path', '[a-zA-z.0-9_\-]+'); |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | 'uses' => 'Projects\\IssuesController@showAction', |
| 91 | 91 | ])->where('owner_path', '[a-zA-z.0-9_\-]+')->where('project_path', '[a-zA-z.0-9_\-]+'); |
| 92 | 92 | |
| 93 | - //edit |
|
| 93 | + //edit |
|
| 94 | 94 | $router->get('{owner_path}/{project_path}/issues/{issue}/edit', [ |
| 95 | 95 | 'as' => 'issue_edit', |
| 96 | 96 | 'uses' => 'Projects\\IssuesController@editAction', |