Skip to content

Commit

Permalink
fix(server): bundle limit is invalid, bundleId missing (#870)
Browse files Browse the repository at this point in the history
  • Loading branch information
maslow authored Mar 7, 2023
1 parent 51d1613 commit b12b3b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
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

0 comments on commit b12b3b9

Please sign in to comment.