mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
15 lines
321 B
TypeScript
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;
|
|
}
|
|
}
|