We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10adae commit ea71048Copy full SHA for ea71048
projects/admin-api/src/lib/models/application.model.ts
@@ -17,4 +17,9 @@ export interface ApplicationModel {
17
components?: ComponentModel[];
18
styling?: ViewerStylingModel;
19
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;
25
}
0 commit comments