1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 19:49:37 +02:00

API routes to edit and delete custom themes. Added ThemeEditor table

This commit is contained in:
Paweł Malak 2022-03-25 11:33:42 +01:00
parent bd96f6ca50
commit ad92de141b
5 changed files with 107 additions and 3 deletions

View file

@ -1,4 +1,6 @@
module.exports = {
getThemes: require('./getThemes'),
addTheme: require('./addTheme'),
deleteTheme: require('./deleteTheme'),
updateTheme: require('./updateTheme'),
};