Skip to content
Snippets Groups Projects
Commit aada08b8 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-6477 small fix

parent 791cb43d
Branches
Tags
No related merge requests found
......@@ -5,12 +5,12 @@ export interface Collaboration {
titel: string;
beschreibung: string;
zustaendigeStelle: ResourceUri;
collaborationLevel?: typeof CollaborationLevels[keyof typeof CollaborationLevels];
collaborationLevel?: (typeof CollaborationLevels)[keyof typeof CollaborationLevels];
}
export class CollaborationLevels {
public static readonly ORGANISATIONS_EINHEIT = "1";
public static readonly EXTERNE_FACHSTELLE = "4";
public static readonly ORGANISATIONS_EINHEIT = 1;
public static readonly EXTERNE_FACHSTELLE = 4;
}
export interface CollaborationResource extends Collaboration, Resource, ListItemResource {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment