1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-18 19:19:36 +02:00
flame/routes/config.js

19 lines
408 B
JavaScript
Raw Permalink Normal View History

2021-05-15 18:33:59 +02:00
const express = require('express');
const router = express.Router();
// middleware
const { auth, requireAuth } = require('../middleware');
2021-05-15 18:33:59 +02:00
const {
getCSS,
updateCSS,
getConfig,
updateConfig,
2021-05-15 18:33:59 +02:00
} = require('../controllers/config');
router.route('/').get(getConfig).put(auth, requireAuth, updateConfig);
2021-05-15 18:33:59 +02:00
router.route('/0/css').get(getCSS).put(auth, requireAuth, updateCSS);
2021-10-06 14:15:05 +02:00
module.exports = router;