@xrengine/server-core
Version:
Shared components for XREngine server
21 lines (17 loc) • 593 B
text/typescript
import authManagement from 'feathers-authentication-management'
import { Application } from '../../../declarations'
import hooks from './auth-management.hooks'
import notifier from './auth-management.notifier'
/**
* A function which register service for auth management
*/
declare module '@xrengine/common/declarations' {
interface ServiceTypes {
authManagement: InstanceType<ReturnType<typeof authManagement>>
}
}
export default (app: Application): void => {
app.configure(authManagement(notifier(app)))
const service = app.service('authManagement')
service.hooks(hooks)
}