feature updates 21.05.2019
This commit is contained in:
parent
ec4ffbdcee
commit
178d0e7f6b
15 changed files with 271 additions and 53 deletions
|
@ -101,6 +101,14 @@ Route::group(
|
|||
'middleware' => ['permission:dataset-approve'],
|
||||
'as' => 'workflow.editor.approveUpdate', 'uses' => 'EditorController@approveUpdate',
|
||||
]);
|
||||
Route::get('workflow/editor/reject/{id}', [
|
||||
'middleware' => ['permission:dataset-editor-reject'],
|
||||
'as' => 'workflow.editor.reject', 'uses' => 'EditorController@reject',
|
||||
]);
|
||||
Route::post('workflow/editor/reject/{id}', [
|
||||
'middleware' => ['permission:dataset-editor-reject'],
|
||||
'as' => 'workflow.editor.rejectUpdate', 'uses' => 'EditorController@rejectUpdate',
|
||||
]);
|
||||
|
||||
//reviewer
|
||||
Route::get('workflow/review/index', [
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue