mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
import { Injectable, CanActivate, ExecutionContext } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class UserCountGuard implements CanActivate {
|
|
constructor() {}
|
|
|
|
async canActivate(context: ExecutionContext): Promise<boolean> {
|
|
return true;
|
|
}
|
|
}
|