@xrengine/server-core
Version:
Shared components for XREngine server
26 lines (25 loc) • 418 B
text/typescript
export default {
definitions: {
authentication: {
type: 'object',
properties: {
strategy: {
type: 'string',
default: 'local'
},
email: {
type: 'string'
},
password: {
type: 'string'
}
}
}
},
securities: ['create', 'remove'],
operations: {
find: {
security: [{ bearer: [] }]
}
}
}