UNPKG

@paperbits/core

Version:
9 lines (7 loc) 391 B
import { IInjector, IInjectorModule } from "@paperbits/common/injection"; import { RoleBasedSecuredBindingHandler } from "../ko/bindingHandlers/bindingHandlers.roleBasedSecured"; export class RoleBasedSecurityRuntimeModule implements IInjectorModule { register(injector: IInjector): void { injector.bindToCollection("autostart", RoleBasedSecuredBindingHandler); } }