Files
ISA-Frontend/apps/isa-app/src/app/commands/remit.command.ts
Lorenz Hilpert 5bea71e19e Merged PR 1431: #3611 Dummy Command angelegt
#3611 Dummy Command angelegt
2022-11-02 13:55:01 +00:00

15 lines
321 B
TypeScript

import { Injectable } from '@angular/core';
import { ActionHandler } from '@core/command';
/** Dummy Command um Fehlermeldungen aus dem Diloag zu verhinden */
@Injectable()
export class RemitCommand extends ActionHandler<any> {
constructor() {
super('remit');
}
handler(ctx: any): any {
return ctx;
}
}