Skip to content
Snippets Groups Projects
Commit f39c19fc authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-5176 OZG-5227 Add unavailable page component

parent f6253275
Branches
Tags
No related merge requests found
<p class="mb-2 block font-bold">Die Administrations-Oberfläche ist nicht verfügbar.</p>
<p>
Prüfen Sie, ob folgendes zutrifft:<br />
Ihnen ist die Rolle Admin_Admin zugewiesen.<br />
Bitte bei der verantwortlichen Person des User-Managements bzw. des Keycloaks melden.<br />
</p>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { UnavailablePageComponent } from './unavailable-page.component';
describe('UnavailablePageComponent', () => {
let component: UnavailablePageComponent;
let fixture: ComponentFixture<UnavailablePageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [UnavailablePageComponent],
}).compileComponents();
fixture = TestBed.createComponent(UnavailablePageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
@Component({
selector: 'unavailable-page',
templateUrl: './unavailable-page.component.html',
styles: [],
})
export class UnavailablePageComponent {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment