Filter communications in the frontend

Since we will know about communications we just moved into another state
in frontend land.
This commit is contained in:
Eli Ribble 2026-05-11 22:14:23 +00:00
parent 3a3cd78cac
commit 633abd19a9
No known key found for this signature in database
2 changed files with 12 additions and 1 deletions

View file

@ -533,6 +533,7 @@ export interface CommunicationDTO {
created: string;
id: string;
source: string;
status: string;
type: string;
uri: string;
}
@ -541,6 +542,7 @@ export class Communication {
public created: Date,
public id: string,
public source: string,
public status: string,
public type: string,
public uri: string,
) {}
@ -549,6 +551,7 @@ export class Communication {
new Date(json.created),
json.id,
json.source,
json.status,
json.type,
json.uri,
);