Skip to content
Snippets Groups Projects
Commit 4bdc37eb authored by OZGCloud's avatar OZGCloud
Browse files

Merge branch 'master' of git.ozg-sh.de:mgm/goofy

parents 195e83cd 6ddeb5f6
Branches
Tags
No related merge requests found
import { Component, EventEmitter, Input, Output } from '@angular/core';
import { PostfachMailListLinkRel, PostfachMailListResource, PostfachMailResource } from '@goofy-client/postfach-shared';
import { Component, Input } from '@angular/core';
import { PostfachMailListLinkRel, PostfachMailListResource } from '@goofy-client/postfach-shared';
import { StateResource } from '@goofy-client/tech-shared';
import { VorgangWithEingangResource } from '@goofy-client/vorgang-shared';
......
<p>drag-and-drop-download-page works!</p>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { DragAndDropDownloadPageComponent } from './drag-and-drop-download-page.component';
describe('DragAndDropDownloadPageComponent', () => {
let component: DragAndDropDownloadPageComponent;
let fixture: ComponentFixture<DragAndDropDownloadPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ DragAndDropDownloadPageComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(DragAndDropDownloadPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'goofy-client-drag-and-drop-download-page',
templateUrl: './drag-and-drop-download-page.component.html',
styleUrls: ['./drag-and-drop-download-page.component.scss']
})
export class DragAndDropDownloadPageComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}
......@@ -14,6 +14,7 @@ import { VorgangListItemComponent } from './vorgang-list-container/vorgang-list/
import { VorgangNextFristButton } from './vorgang-list-container/vorgang-list/vorgang-list-item/vorgang-next-frist-button/vorgang-next-frist-button.component';
import { VorgangListComponent } from './vorgang-list-container/vorgang-list/vorgang-list.component';
import { VorgangListPageComponent } from './vorgang-list-page/vorgang-list-page.component';
import { DragAndDropDownloadPageComponent } from './drag-and-drop-download-page/drag-and-drop-download-page.component';
const routes: Routes = [
{
......@@ -27,6 +28,10 @@ const routes: Routes = [
{
path: 'vorgang/:vorgangWithEingangUrl',
loadChildren: () => import('@goofy-client/vorgang-detail').then(m => m.VorgangDetailModule)
},
{
path: 'test-download',
component: DragAndDropDownloadPageComponent
}
];
......@@ -48,7 +53,8 @@ const routes: Routes = [
VorgangListContainerComponent,
VorgangListPageComponent,
EmptyListComponent,
VorgangNextFristButton
VorgangNextFristButton,
DragAndDropDownloadPageComponent
]
})
export class VorgangModule { }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment