From 9f7d72d9e7fdb780cece0c31e5f2471e9a9da915 Mon Sep 17 00:00:00 2001 From: Lukas Kimpel <lukas.kimpel@mni.thm.de> Date: Fri, 9 Mar 2018 10:11:08 +0100 Subject: [PATCH] Add some more demo data Adjust demo data --- src/app/in-memory-data.service.ts | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/app/in-memory-data.service.ts b/src/app/in-memory-data.service.ts index 213bd3e8e..c91bb3c24 100644 --- a/src/app/in-memory-data.service.ts +++ b/src/app/in-memory-data.service.ts @@ -25,20 +25,29 @@ export class InMemoryDataService implements InMemoryDbService { const rooms = [ { id: '1', - revision: '1', - shortId: 't', + revision: '10', + shortId: '12345678', abbreviation: 'abb', - name: 'testroom', - description: 'this is a test room', + name: 'ARSnova Testroom', + description: 'Refactoring ARSnova to look and feel good', closed: true }, { id: '2', revision: '11', - shortId: 't1', + shortId: '23456789', abbreviation: 'abb1', - name: 'testroom1', - description: 'this is a test room1', + name: 'Darkroom', + description: 'Here is where the 18+ stuff happens', + closed: false + }, + { + id: '3', + revision: '11', + shortId: '34567890', + abbreviation: 'abb1', + name: 'Keller', + description: 'This is where the beer stehs', closed: false } ]; -- GitLab