Meteor-back/model/configNew.mjs

11 lines
307 B
JavaScript

import { Schema } from 'redis-om'
const configSchema = new Schema('config', {
RegistrationEnabled: { type: 'boolean' },
MaintenanceEnabled: { type: 'boolean' },
GamesEnabled: { type: 'boolean' },
KeysEnabled: { type: 'boolean' },
bannermessage: { type: 'string' },
})
export default configSchema