mirror of
https://github.com/vale981/Vulcan
synced 2025-03-12 05:26:38 -04:00
19 lines
280 B
JavaScript
19 lines
280 B
JavaScript
![]() |
import { createCollection } from 'meteor/vulcan:core';
|
||
|
import schema from './schema.js';
|
||
|
import resolvers from './resolvers.js';
|
||
|
|
||
|
const Settings = createCollection({
|
||
|
|
||
|
collectionName: 'Settings',
|
||
|
|
||
|
typeName: 'Setting',
|
||
|
|
||
|
schema,
|
||
|
|
||
|
resolvers,
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
export default Settings;
|