Remove got to building action

This commit is contained in:
2020-04-02 11:08:32 +03:00
parent 473e3572e3
commit 23f3743599
4 changed files with 8 additions and 20 deletions

View File

@ -1,12 +0,0 @@
import ActionController from './ActionController';
import { Args } from '../Common';
import { Task } from '../Storage/TaskQueue';
export default class GoToBuildingAction extends ActionController {
static NAME = 'go_to_building';
async run(args: Args, task: Task): Promise<any> {
window.location.assign('/build.php?id=' + args.id);
return null;
}
}