refactor: use tabs instead of spaces

This commit is contained in:
Sonny
2024-10-07 01:33:59 +02:00
parent f425decf2c
commit eea9732100
197 changed files with 5206 additions and 5209 deletions

View File

@@ -5,11 +5,11 @@ const AppsController = () => import('#controllers/apps_controller');
* All routes for both logged and guest users
*/
router.group(() => {
router.on('/').renderInertia('home').as('home');
router.on('/terms').renderInertia('terms').as('terms');
router.on('/privacy').renderInertia('privacy').as('privacy');
router.on('/').renderInertia('home').as('home');
router.on('/terms').renderInertia('terms').as('terms');
router.on('/privacy').renderInertia('privacy').as('privacy');
router
.post('/user/theme', [AppsController, 'updateUserTheme'])
.as('user.theme');
router
.post('/user/theme', [AppsController, 'updateUserTheme'])
.as('user.theme');
});