Add interface to force rejections

This commit is contained in:
2021-11-06 15:06:47 +00:00
parent aed473a01a
commit a2f7b76fcb
2 changed files with 34 additions and 3 deletions

View File

@@ -44,7 +44,8 @@ class DevToolsController extends Controller
$this->singleAuthorise();
return view('dashboard.administration.devtools')
->with('applications', Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get());
->with('applications', Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get())
->with('rejectApplications', Application::all());
}
/**