Skip to content

Commit

Permalink
DPP-96 removed old todo's
Browse files Browse the repository at this point in the history
  • Loading branch information
Brummos committed Dec 13, 2023
1 parent c731157 commit e234e52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/data-store/src/eventLogger/EventLoggerStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ export class EventLoggerStore extends AbstractEventLoggerStore {
actionSubType: event.actionSubType,
initiatorType: event.initiatorType,
partyAlias: event.partyAlias,
partyCorrelationId: event.partyCorrelationId, // TODO or map contact
partyCorrelationId: event.partyCorrelationId,
partyCorrelationType: event.partyCorrelationType,
subSystemType: event.subSystemType,
system: event.system,
systemAlias: event.systemAlias,
systemCorrelationId: event.systemCorrelationId, // TODO or map contact
systemCorrelationId: event.systemCorrelationId,
systemCorrelationIdType: event.systemCorrelationIdType,
...(event.data && {data: JSON.parse(event.data)}),
...(event.diagnosticData && {diagnosticData: JSON.parse(event.diagnosticData)}),
Expand Down
2 changes: 1 addition & 1 deletion packages/ssi-sdk-core/src/types/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export enum SystemCorrelationIdType {
USER = 'user'
}

export enum PartyCorrelationType { // TODO we already have SystemCorrelationIdType, should these be duplicated?
export enum PartyCorrelationType {
DID = 'did',
EMAIL = 'email',
HOSTNAME = 'hostname',
Expand Down

0 comments on commit e234e52

Please sign in to comment.