mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-19 06:43:45 +02:00
Disable account API until it is implemented
This commit is contained in:
@@ -30,15 +30,16 @@ Route::group(['prefix' => 'account'], function () {
|
||||
|
|
||||
| Endpoint: /account/api
|
||||
|
|
||||
| Temporarily Disabled
|
||||
*/
|
||||
Route::group(['prefix' => 'account/api'], function () {
|
||||
Route::get('/', 'AccountKeyController@index')->name('account.api');
|
||||
Route::get('/new', 'AccountKeyController@create')->name('account.api.new');
|
||||
|
||||
Route::post('/new', 'AccountKeyController@store');
|
||||
|
||||
Route::delete('/revoke/{identifier}', 'AccountKeyController@revoke')->name('account.api.revoke');
|
||||
});
|
||||
//Route::group(['prefix' => 'account/api'], function () {
|
||||
// Route::get('/', 'AccountKeyController@index')->name('account.api');
|
||||
// Route::get('/new', 'AccountKeyController@create')->name('account.api.new');
|
||||
//
|
||||
// Route::post('/new', 'AccountKeyController@store');
|
||||
//
|
||||
// Route::delete('/revoke/{identifier}', 'AccountKeyController@revoke')->name('account.api.revoke');
|
||||
//});
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user