mirror of
https://github.com/vale981/grapher
synced 2025-03-10 04:46:40 -04:00
14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
import Groups from './collection.js';
|
|
import Authors from '../authors/collection.js';
|
|
import Posts from '../posts/collection.js';
|
|
|
|
Groups.addLinks({
|
|
authors: {
|
|
collection: Authors,
|
|
inversedBy: 'groups'
|
|
},
|
|
posts: {
|
|
collection: Posts,
|
|
inversedBy: 'group'
|
|
}
|
|
});
|