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

2811 create message thread data model #2955

Merged
merged 9 commits into from
Dec 12, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
modifications
  • Loading branch information
bosiraphael committed Dec 12, 2023
commit 59c43d7cbfdfa20fd5ed3b78e7b3fe75c70bae74
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ export class MessageObjectMetadata extends BaseObjectMetadata {
@FieldMetadata({
// will be an array
type: FieldMetadataType.TEXT,
label: 'External Ids',
description: 'Message ids from the messaging provider',
label: 'External Id',
description: 'Message id from the messaging provider',
icon: 'IconHash',
})
@IsNullable()
externalIds: string;
externalId: string;

@FieldMetadata({
type: FieldMetadataType.TEXT,
label: 'Header mail Id',
description: 'Mail id from the mail header',
label: 'Header message Id',
description: 'Message id from the message header',
icon: 'IconHash',
})
@IsNullable()
headerMailId: string;
headerMessageId: string;

@FieldMetadata({
type: FieldMetadataType.RELATION,
Expand Down
Loading