mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 03:29:37 +02:00
Read/write css file from app settings. Changed order of operations at app startup. Added nano to Dockerfile
This commit is contained in:
parent
4c3255107c
commit
5ae4d6e7c4
15 changed files with 161 additions and 35 deletions
|
@ -8,6 +8,8 @@ const {
|
|||
updateValue,
|
||||
updateValues,
|
||||
deletePair,
|
||||
updateCss,
|
||||
getCss,
|
||||
} = require('../controllers/config');
|
||||
|
||||
router
|
||||
|
@ -22,4 +24,9 @@ router
|
|||
.put(updateValue)
|
||||
.delete(deletePair);
|
||||
|
||||
router
|
||||
.route('/0/css')
|
||||
.get(getCss)
|
||||
.put(updateCss);
|
||||
|
||||
module.exports = router;
|
Loading…
Add table
Add a link
Reference in a new issue