Skip to content

Commit

Permalink
feat(application): make name optional to support expiring apps
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinperaza committed Nov 14, 2022
1 parent 0f6c5b0 commit 16a3d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/models/applications.ts
Expand Up @@ -14,7 +14,7 @@ type TransformType = typeof TRANSFORM_TYPES[number];
interface Application extends Auditable {
id: string;
tenantId: string;
name: string;
name?: string;
key?: string;
type: ApplicationType;
permissions?: string[];
Expand Down

0 comments on commit 16a3d92

Please sign in to comment.