Skip to content
Snippets Groups Projects
Commit d6abfba9 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Fix modules for new backend

parent 2ad009c3
1 merge request!117Resolve "Content creation refactoring"
export class ContentGroup {
name: string;
contentIds: string[];
autoSort: boolean;
constructor(name: string, contentIds: string[], autoSort: boolean) {
this.name = name;
this.contentIds = contentIds;
this.autoSort = autoSort;
}
}
import { ContentGroup } from './content-group';
export class Room {
id: string;
revision: string;
......@@ -6,5 +8,5 @@ export class Room {
name: string;
description: string;
closed: boolean;
contentGroups: {[key: string]: [string]};
contentGroups: ContentGroup[];
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment