| /* |
| ****************************************************************************** |
| * Copyright © 2018 PTA GmbH. |
| * All rights reserved. This program and the accompanying materials |
| * are made available under the terms of the Eclipse Public License v1.0 |
| * which accompanies this distribution, and is available at |
| * |
| * http://www.eclipse.org/legal/epl-v10.html |
| * |
| ****************************************************************************** |
| */ |
| import { User } from '../model/user'; |
| |
| export const USERS: User[] = [ |
| { |
| id: '1', |
| itemName: 'max', |
| username: 'max', |
| password: 'max', |
| name: 'Max Mustermann', |
| roles: ['planned-policies-measureplanner', 'test', 'test2'], |
| firstName: 'Max', |
| lastName: 'Mustermann', |
| }, |
| { |
| id: '2', |
| itemName: 'admin', |
| username: 'admin', |
| password: 'admin', |
| name: 'Administrator', |
| roles: ['test', 'planned-policies-superuser'], |
| firstName: 'Administrator', |
| lastName: '', |
| }, |
| { |
| id: '3', |
| itemName: 'otto', |
| username: 'otto', |
| password: 'otto', |
| name: 'Otto Normalverbraucher', |
| roles: ['test', 'planned-policies-measureapplicant'], |
| firstName: 'Otto', |
| lastName: 'Normalverbraucher', |
| } |
| ]; |