src/app/workspace-admin/workspacedata.service.ts
Properties |
Public navLinks |
Type : []
|
Default value : [
{ path: 'files', label: 'Dateien' },
{ path: 'syscheck', label: 'System-Check Berichte' },
{ path: 'results', label: 'Ergebnisse/Antworten' }
]
|
Public wsId |
Type : string
|
Public wsName |
Type : string
|
Default value : ''
|
Public wsRole |
Type : string
|
Default value : 'RW'
|
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
@Injectable()
export class WorkspaceDataService {
public wsId: string;
public wsRole = 'RW';
public wsName = '';
public navLinks = [
{ path: 'files', label: 'Dateien' },
{ path: 'syscheck', label: 'System-Check Berichte' },
{ path: 'results', label: 'Ergebnisse/Antworten' }
];
}