import { Authorizer } from './Authorizer'; /** * Authorizer which allows all access independent of the identifier and requested permissions. */ export class AllowEverythingAuthorizer extends Authorizer { public async handle(): Promise { // Allows all actions } }