- reject form für reviewer
- editor sees submission date in index table - 2 new routes: reject und rejectUpdate
This commit is contained in:
parent
abc0360835
commit
ec4ffbdcee
5 changed files with 90 additions and 2 deletions
|
@ -128,6 +128,20 @@ class ReviewController extends Controller
|
|||
throw new GeneralException(trans('exceptions.publish.review.update_error'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Reject dataset back to editor
|
||||
*
|
||||
* @param int $id
|
||||
* @return \Illuminate\View\View
|
||||
*/
|
||||
public function reject($id): View
|
||||
{
|
||||
$dataset = Dataset::with('user:id,login')->findOrFail($id);
|
||||
return view('workflow.review.reject', [
|
||||
'dataset' => $dataset,
|
||||
]);
|
||||
}
|
||||
|
||||
//snakeToCamel
|
||||
private static function convertColumnToFieldname($columnname)
|
||||
{
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue