HSB-514 refactor: remove unused CollType GQL enum (#5074)

chore: removed unused CollType GQL enum
This commit is contained in:
Mir Arif Hasan 2025-05-16 16:55:56 +06:00 committed by GitHub
parent 3bf44638e1
commit 7ee33abdef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 9 deletions

View file

@ -28,7 +28,7 @@ services:
environment:
# DATABASE_URL is read from the .env file to allow the backend to connect with an external database.
# This allows the backend to retain existing data and prevents database resets during deployments.
- DATABASE_URL=postgresql://postgres:testpass@hoppscotch-db:5432/hoppscotch
# - DATABASE_URL=postgresql://postgres:testpass@hoppscotch-db:5432/hoppscotch
- ENABLE_SUBPATH_BASED_ACCESS=true
env_file:
- ./.env

View file

@ -58,10 +58,6 @@ export class UserCollectionRemovedData {
type: ReqType;
}
registerEnumType(ReqType, {
name: 'CollType',
});
@ObjectType()
export class UserCollectionExportJSONData {
@Field(() => ID, {
@ -119,7 +115,3 @@ export class UserCollectionDuplicatedData {
})
requests: UserRequest[];
}
registerEnumType(ReqType, {
name: 'CollType',
});