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