mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
33 lines
752 B
TypeScript
33 lines
752 B
TypeScript
|
///<reference path="../../typings/main.d.ts"/>
|
||
|
|
||
|
import {AuthenticationMWs} from "../middlewares/AuthenticationMWs";
|
||
|
import {UserRoles} from "../../common/entities/User";
|
||
|
|
||
|
export class AdminRouter{
|
||
|
constructor(private app) {
|
||
|
|
||
|
this.addResetDB();
|
||
|
this.addIndexGalery();
|
||
|
}
|
||
|
|
||
|
private addResetDB() {
|
||
|
this.app.post("/api/admin/db/reset",
|
||
|
AuthenticationMWs.authenticate,
|
||
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
||
|
//TODO: implement
|
||
|
);
|
||
|
};
|
||
|
|
||
|
private addIndexGalery() {
|
||
|
this.app.post("/api/admin/gallery/index",
|
||
|
AuthenticationMWs.authenticate,
|
||
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
||
|
//TODO: implement
|
||
|
);
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|