add api scaffolds

This commit is contained in:
Mads Rasmussen
2023-02-02 08:33:24 +01:00
parent 7ca7b77cee
commit e41f962420
3 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
export class CreateDocumentEntityAction {
#host: any;
constructor(host: any) {
this.#host = host;
}
execute() {
alert('create');
}
}

View File

@@ -0,0 +1,11 @@
export class DeleteDocumentEntityAction {
#host: any;
constructor(host: any) {
this.#host = host;
}
execute() {
alert('delete');
}
}

View File

@@ -0,0 +1,11 @@
export class PublishDocumentEntityAction {
#host: any;
constructor(host: any) {
this.#host = host;
}
execute() {
alert('publish');
}
}