first commit

This commit is contained in:
Milos Holba
2021-01-11 15:36:41 +01:00
parent c2a5d4bc74
commit a8457cf261
7 changed files with 225 additions and 63 deletions
+5
View File
@@ -168,6 +168,11 @@ Route::group(['middleware' => ['auth:api', 'auth.master', 'auth.admin', 'scope:m
Route::patch('/settings', 'SettingController@update');
Route::get('/settings', 'SettingController@show');
Route::get('/flush-cache', 'AppFunctionsController@flush_cache');
// Language
Route::patch('/language/update', 'Language\LanguageController@update');
Route::get('/language/{language}/strings', 'Language\LanguageController@show_strings');
Route::get('/language/get-all', 'Language\LanguageController@all_languages');
});
// Protected sharing routes for authenticated user