publish view
This commit is contained in:
parent
5193e4f5b5
commit
f7673e33e0
8 changed files with 262 additions and 8 deletions
|
@ -116,6 +116,20 @@ Route::group(
|
|||
'as' => 'workflow.review.reviewUpdate', 'uses' => 'ReviewController@reviewUpdate',
|
||||
]);
|
||||
|
||||
//publisher
|
||||
Route::get('workflow/publish/index', [
|
||||
'middleware' => ['permission:dataset-publish-list'],
|
||||
'as' => 'workflow.publish.index', 'uses' => 'PublishController@index',
|
||||
]);
|
||||
Route::get('workflow/publish/{id}', [
|
||||
'middleware' => ['permission:dataset-publish'],
|
||||
'as' => 'workflow.publish.publish', 'uses' => 'PublishController@publish',
|
||||
]);
|
||||
Route::post('workflow/review/{id}', [
|
||||
'middleware' => ['permission:dataset-publish'],
|
||||
'as' => 'workflow.publish.publishUpdate', 'uses' => 'PublishController@publishUpdate',
|
||||
]);
|
||||
|
||||
Route::get('workflow/changestate/{id}/changestate/{targetState}', [
|
||||
'as' => 'review.changestate', 'uses' => 'SubmitController@changestate',
|
||||
]);
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue