mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-19 15:25:29 +00:00
a72f00a97b
Page Settings
12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { getPageSettings, savePageSettings } from '../../controllers/shared/pageSettings.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', isAuthenticated, getPageSettings);
|
|
router.post('/', isAuthenticated, savePageSettings);
|
|
|
|
export default router;
|