feat(workspaces): code review changes

This commit is contained in:
Alessandro Magionami
2025-02-28 11:14:28 +01:00
parent b6faa09bfc
commit b6f269b8ea
6 changed files with 61 additions and 13 deletions
@@ -1,7 +1,7 @@
import { BaseError } from '@/modules/shared/errors'
export class InvalidWorkspaceSeatType extends BaseError {
export class InvalidWorkspaceSeatTypeError extends BaseError {
static defaultMessage = 'Workspace seat type is invalid'
static code = 'INDALID_WORKSPACE_SEAT_TYPE'
static code = 'INDALID_WORKSPACE_SEAT_TYPE_ERROR'
static statusCode = 400
}