Add document type field
Signed-off-by: Bryan Frimin <bryan@getprobo.com> Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
committed by
Sacha Al Himdani
parent
7a65ec8672
commit
7d2d26aab5
14
packages/helpers/src/documents.ts
Normal file
14
packages/helpers/src/documents.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
type Translator = (s: string) => string;
|
||||
|
||||
export const documentTypes = ["OTHER", "ISMS", "POLICY"] as const;
|
||||
|
||||
export function getDocumentTypeLabel(__: Translator, type: string) {
|
||||
switch (type) {
|
||||
case "OTHER":
|
||||
return __("Other");
|
||||
case "ISMS":
|
||||
return __("ISMS");
|
||||
case "POLICY":
|
||||
return __("Policy");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user