1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/backend/routes/AdminRouter.ts

30 lines
758 B
TypeScript
Raw Normal View History

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