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

28 lines
717 B
TypeScript
Raw Normal View History

2016-05-26 02:17:42 +08:00
import {AuthenticationMWs} from "../middlewares/user/AuthenticationMWs";
2016-12-27 23:09:47 +08:00
import {UserRoles} from "../../common/entities/UserDTO";
2016-05-09 23:04:56 +08:00
export class AdminRouter {
2016-12-27 06:36:38 +08:00
constructor(private app: any) {
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
);
};
}