added editor_move_file_to_another_folder, editor_move_folder_to_another_folder test

This commit is contained in:
Peter Papp
2021-03-10 16:45:07 +01:00
parent cc526f8d95
commit 5e37e10a0c
5 changed files with 164 additions and 50 deletions

View File

@@ -42,6 +42,8 @@ class RouteServiceProvider extends ServiceProvider
{
$this->mapApiRoutes();
$this->mapShareRoutes();
$this->mapAdminApiRoutes();
$this->mapSetupWizardApiRoutes();
@@ -98,6 +100,14 @@ class RouteServiceProvider extends ServiceProvider
->group(base_path('routes/api.php'));
}
protected function mapShareRoutes()
{
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/share.php'));
}
protected function mapAdminApiRoutes()
{
Route::prefix('api/admin')