Skip to content

Commit

Permalink
fix: Enable updated state explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
Eengineer1 committed Sep 7, 2023
1 parent acf2f18 commit c3d9170
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/services/identity/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,8 @@ export class Veramo {
fetchList: true,
publish: true,
publishEncrypted: false,
returnUpdatedStatusList: true,
returnStatusListMetadata: true
} satisfies ICheqdRevokeBulkCredentialsWithStatusList2021Args);
case DefaultStatusActions.suspend:
return await agent.cheqdSuspendCredentials({
Expand All @@ -578,6 +580,8 @@ export class Veramo {
fetchList: true,
publish: true,
publishEncrypted: false,
returnUpdatedStatusList: true,
returnStatusListMetadata: true
} satisfies ICheqdSuspendBulkCredentialsWithStatusList2021Args);
case DefaultStatusActions.reinstate:
return await agent.cheqdUnsuspendCredentials({
Expand All @@ -590,6 +594,8 @@ export class Veramo {
fetchList: true,
publish: true,
publishEncrypted: false,
returnUpdatedStatusList: true,
returnStatusListMetadata: true
} satisfies ICheqdUnsuspendBulkCredentialsWithStatusList2021Args);
}
}
Expand Down

0 comments on commit c3d9170

Please sign in to comment.