ALPHA 3.0.5

This commit is contained in:
TheGamecraft
2018-09-21 14:31:00 -04:00
parent 252ff658e0
commit 3b593297cd
33 changed files with 559 additions and 98 deletions

View File

@@ -32,6 +32,9 @@ Route::middleware('auth:api')->group(function () {
/** Inventory Route */
Route::post('/item/delete', 'ItemController@destroy');
/** Config Route */
Route::post('/config/general/save', 'ConfigController@update');
Route::get('/user/perm/{id}', function($id) {
$user = \App\User::find($id);
return $user->getPerm("schedule_edit");