mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
remove cloud env check
This commit is contained in:
parent
315afd6818
commit
e9b7273489
@ -36,11 +36,8 @@ export class JwtStrategy extends PassportStrategy(Strategy, 'jwt') {
|
||||
throw new UnauthorizedException();
|
||||
}
|
||||
|
||||
// CLOUD ENV
|
||||
if (this.environmentService.isCloud()) {
|
||||
if (req.raw.workspaceId && req.raw.workspaceId !== payload.workspaceId) {
|
||||
throw new UnauthorizedException('Workspace does not match');
|
||||
}
|
||||
if (req.raw.workspaceId && req.raw.workspaceId !== payload.workspaceId) {
|
||||
throw new UnauthorizedException('Workspace does not match');
|
||||
}
|
||||
|
||||
const workspace = await this.workspaceRepo.findById(payload.workspaceId);
|
||||
|
Loading…
x
Reference in New Issue
Block a user