mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
11 lines
280 B
TypeScript
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
|
|
}
|
|
}
|