You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/hydrooj/src/handler/notfound.ts

19 lines
434 B
TypeScript

/* eslint-disable no-empty-function */
/* eslint-disable class-methods-use-this */
import { NotFoundError } from '../error';
import { Route, Handler } from '../service/server';
5 years ago
class NotFoundHandler extends Handler {
prepare() {
throw new NotFoundError(this.request.path);
5 years ago
}
all() { }
5 years ago
}
export async function apply() {
Route('notfound', '(/.*)+', NotFoundHandler);
5 years ago
}
global.Hydro.handler.notfound = apply;