mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
30 lines
752 B
TypeScript
30 lines
752 B
TypeScript
///<reference path="../../typings/main.d.ts"/>
|
|
|
|
import {AuthenticationMWs} from "../middlewares/AuthenticationMWs";
|
|
import {UserRoles} from "../../common/entities/User";
|
|
|
|
export class AdminRouter {
|
|
constructor(private app) {
|
|
|
|
this.addResetDB();
|
|
this.addIndexGallery();
|
|
}
|
|
|
|
private addResetDB() {
|
|
this.app.post("/api/admin/db/reset",
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
//TODO: implement
|
|
);
|
|
};
|
|
|
|
private addIndexGallery() {
|
|
this.app.post("/api/admin/gallery/index",
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
//TODO: implement
|
|
);
|
|
};
|
|
|
|
|
|
} |