Skip to content

Commit

Permalink
feat: add expiring application type (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcschy committed Nov 4, 2022
1 parent 4a94730 commit 8e5bca2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/types/models/applications.ts
@@ -1,6 +1,11 @@
import type { Auditable } from './shared';

const APPLICATION_TYPES = ['private', 'public', 'management'] as const;
const APPLICATION_TYPES = [
'private',
'public',
'management',
'expiring',
] as const;
const TRANSFORM_TYPES = ['mask', 'redact', 'reveal'] as const;

type ApplicationType = typeof APPLICATION_TYPES[number];
Expand Down

0 comments on commit 8e5bca2

Please sign in to comment.