2016-05-25 20:17:42 +02:00
|
|
|
import {AuthenticationMWs} from "../middlewares/user/AuthenticationMWs";
|
2016-12-27 16:09:47 +01:00
|
|
|
import {UserRoles} from "../../common/entities/UserDTO";
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2016-05-09 17:04:56 +02:00
|
|
|
export class AdminRouter {
|
2016-12-26 23:36:38 +01:00
|
|
|
constructor(private app: any) {
|
2016-03-19 17:31:42 +01:00
|
|
|
|
|
|
|
this.addResetDB();
|
2016-03-19 19:59:19 +01:00
|
|
|
this.addIndexGallery();
|
2016-03-19 17:31:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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() {
|
2016-03-19 17:31:42 +01:00
|
|
|
this.app.post("/api/admin/gallery/index",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|