Replaced Moment with Carbon #84
2 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ export default class NavIndex {
|
|||
case 'edit-item':
|
||||
self.processing = false;
|
||||
window.location =
|
||||
'/dashboard/page/edit/' + e.target.getAttribute('data-id');
|
||||
'/dashboard/page/edit/' + e.target.getAttribute('data-uuid');
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ Route::group(['prefix' => '/admin/page', 'middleware' => 'validate.key'], functi
|
|||
});
|
||||
|
||||
//settings
|
||||
Route::group(['prefix' => '/v1/settings', 'middleware' => 'validate.key'], function () {
|
||||
Route::group(['prefix' => '/admin/settings', 'middleware' => 'validate.key'], function () {
|
||||
Route::put("/publish", [SettingsAPIController::class, 'publish']);
|
||||
Route::put("/sync", [SettingsAPIController::class, 'sync']);
|
||||
Route::put("/nav-sync", [SettingsAPIController::class, 'navSync']);
|
||||
|
|
Loading…
Add table
Reference in a new issue