Skip to content

Commit

Permalink
Merge pull request #349 from credebl/fix-request-id
Browse files Browse the repository at this point in the history
fix: request id issue
  • Loading branch information
KulkarniShashank authored Dec 14, 2023
2 parents ad17250 + 0610866 commit 4d4dfc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions apps/ecosystem/interfaces/ecosystem.interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ export interface CreateEcosystem {
name?: string;
description?: string;
tags?: string;
logoUrl?:string;
userId?: string;
logo?: string;
orgName?: string;
Expand Down
2 changes: 1 addition & 1 deletion apps/ecosystem/src/ecosystem.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class EcosystemService {

if (tags) { updateData.tags = tags; }

if (logo) { updateData.logo = logo; }
if (logo) { updateData.logoUrl = logo; }

if ('' !== autoEndorsement.toString()) { updateData.autoEndorsement = autoEndorsement; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ export class VerificationRepository {
createdBy: true,
orgId: true,
state: true,
connectionId: true
connectionId: true,
id: true
},
orderBy: {
[proofRequestsSearchCriteria.sorting]:
Expand Down

0 comments on commit 4d4dfc5

Please sign in to comment.