CommunitySolidServer/src/authorization/AllowEverythingAuthorizer.ts

11 lines
280 B
TypeScript

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<void> {
// Allows all actions
}
}