Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(server): bundle limit is invalid, bundleId missing #870

Merged
merged 1 commit into from
Mar 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions server/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ model Bundle {
}

model ApplicationBundle {
id String @id @default(auto()) @map("_id") @db.ObjectId
appid String @unique
id String @id @default(auto()) @map("_id") @db.ObjectId
appid String @unique
bundleId String @db.ObjectId
name String
displayName String
resource BundleResource
Expand Down
2 changes: 1 addition & 1 deletion server/src/application/application.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class ApplicationController {
where: {
createdBy: user.id,
bundle: {
id: dto.bundleId,
bundleId: dto.bundleId,
},
},
})
Expand Down
1 change: 1 addition & 0 deletions server/src/application/application.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export class ApplicationService {
},
bundle: {
create: {
bundleId: bundle.id,
name: bundle.name,
displayName: bundle.displayName,
price: bundle.price,
Expand Down