Skip to content
Snippets Groups Projects
Commit 7215ad8a authored by Hagen Dreßler's avatar Hagen Dreßler
Browse files

Add comment test data

parent a0dc334c
1 merge request!54Resolve "comment creation - creator component logic"
......@@ -42,6 +42,17 @@ export class InMemoryDataService implements InMemoryDbService {
closed: false
}
];
return { rooms };
const comments = [
{
id: 'ccc',
roomId: 'test',
revision: '',
subject: 'testcomment',
body: 'adsasdasdasdasdas',
read: false,
creationTimestamp: Date.now(),
}
];
return { rooms, comments };
}
}
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