1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/routes/AdminRouter.ts

30 lines
752 B
TypeScript
Raw Normal View History

///<reference path="../../typings/main.d.ts"/>
import {AuthenticationMWs} from "../middlewares/AuthenticationMWs";
import {UserRoles} from "../../common/entities/User";
2016-05-09 23:04:56 +08:00
export class AdminRouter {
constructor(private app) {
this.addResetDB();
2016-03-20 02:59:19 +08:00
this.addIndexGallery();
}
private addResetDB() {
this.app.post("/api/admin/db/reset",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin)
//TODO: implement
);
};
2016-03-20 02:59:19 +08:00
private addIndexGallery() {
this.app.post("/api/admin/gallery/index",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin)
//TODO: implement
);
};
}