mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
18 lines
279 B
JavaScript
18 lines
279 B
JavaScript
import { createCollection } from 'meteor/vulcan:lib';
|
|
import schema from './schema.js';
|
|
import resolvers from './resolvers.js';
|
|
|
|
const Settings = createCollection({
|
|
|
|
collectionName: 'Settings',
|
|
|
|
typeName: 'Setting',
|
|
|
|
schema,
|
|
|
|
resolvers,
|
|
|
|
});
|
|
|
|
|
|
export default Settings;
|