- add ui for editor for publishing dois
- composer updates - unit test with test credentials
This commit is contained in:
parent
367dd328ef
commit
b5abcef327
14 changed files with 422 additions and 102 deletions
|
@ -139,6 +139,14 @@ Route::group(
|
|||
'middleware' => ['permission:dataset-publish'],
|
||||
'as' => 'workflow.editor.publishUpdate', 'uses' => 'EditorController@publishUpdate',
|
||||
]);
|
||||
Route::get('workflow/editor/doi/{id}', [
|
||||
'middleware' => ['permission:dataset-publish'],
|
||||
'as' => 'workflow.editor.doi', 'uses' => 'EditorController@doi',
|
||||
]);
|
||||
Route::post('workflow/editor/doi/{publish_id}', [
|
||||
'middleware' => ['permission:dataset-publish'],
|
||||
'as' => 'workflow.editor.doiStore', 'uses' => 'EditorController@doiStore',
|
||||
]);
|
||||
|
||||
//reviewer
|
||||
Route::get('workflow/review/index', [
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue