Finished implementation of frontend functionality.

Styling and bugfixing next
This commit is contained in:
grimsi
2022-07-25 21:17:30 +02:00
parent 57377036c4
commit aa72161990
23 changed files with 146 additions and 152 deletions
@@ -0,0 +1,11 @@
import {FormControl} from "@angular/forms";
export class PathToSlugDto {
slug: string;
path: string;
constructor(slug: string, path: string) {
this.slug = slug;
this.path = path;
}
}
@@ -0,0 +1,4 @@
export class UnmappedFileDto {
id!: number;
path!: string;
}