Add new dynamic view for creating API keys

This commit is contained in:
Dane Everitt
2017-04-09 18:59:54 -04:00
parent 87c09a921b
commit 722fd614a1
10 changed files with 311 additions and 492 deletions

View File

@@ -95,6 +95,8 @@ Route::group(['prefix' => '/users'], function () {
Route::post('/', 'UserController@store');
Route::put('/{id}', 'UserController@update');
Route::delete('/{id}', 'UserController@delete');
});