Add document classification
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
@@ -14,3 +14,23 @@ export function getDocumentTypeLabel(__: Translator, type: string) {
|
||||
return __("Procedure");
|
||||
}
|
||||
}
|
||||
|
||||
export const documentClassifications = [
|
||||
"PUBLIC",
|
||||
"INTERNAL",
|
||||
"CONFIDENTIAL",
|
||||
"SECRET",
|
||||
] as const;
|
||||
|
||||
export function getDocumentClassificationLabel(__: Translator, classification: string) {
|
||||
switch (classification) {
|
||||
case "PUBLIC":
|
||||
return __("Public");
|
||||
case "INTERNAL":
|
||||
return __("Internal");
|
||||
case "CONFIDENTIAL":
|
||||
return __("Confidential");
|
||||
case "SECRET":
|
||||
return __("Secret");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user