mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 11:39:36 +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
|
@ -2,12 +2,14 @@ const Category = require('./Category');
|
|||
const Bookmark = require('./Bookmark');
|
||||
|
||||
const associateModels = () => {
|
||||
// Category <> Bookmark
|
||||
Category.hasMany(Bookmark, {
|
||||
as: 'bookmarks',
|
||||
foreignKey: 'categoryId',
|
||||
as: 'bookmarks'
|
||||
});
|
||||
|
||||
Bookmark.belongsTo(Category, {
|
||||
foreignKey: 'categoryId'
|
||||
});
|
||||
Bookmark.belongsTo(Category, { foreignKey: 'categoryId' });
|
||||
}
|
||||
|
||||
module.exports = associateModels;
|
Loading…
Add table
Add a link
Reference in a new issue