Skip to content

Commit ea71048

Browse files
committed
HTM-1719: Add readony createdBy / lastModifiedBy / createdDate / lastModifiedDate metadata to Application
1 parent c10adae commit ea71048

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

projects/admin-api/src/lib/models/application.model.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,9 @@ export interface ApplicationModel {
1717
components?: ComponentModel[];
1818
styling?: ViewerStylingModel;
1919
authorizationRules: AuthorizationRuleGroup[];
20+
readonly createdBy?: string | null;
21+
readonly lastModifiedBy?: string | null;
22+
// these dates are in format 2025-10-23T11:09:42.253370769Z
23+
readonly createdDate?: string | null;
24+
readonly lastModifiedDate?: string | null;
2025
}

0 commit comments

Comments
 (0)