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
733 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 {
2017-06-04 21:25:08 +08:00
public static route(app: any) {
2017-06-04 21:25:08 +08:00
this.addResetDB(app);
this.addIndexGallery(app);
}
2017-06-04 21:25:08 +08:00
private static addResetDB(app) {
app.post("/api/admin/db/reset",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin)
//TODO: implement
);
};
2017-06-04 21:25:08 +08:00
private static addIndexGallery(app) {
app.post("/api/admin/gallery/index",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin)
//TODO: implement
);
};
}