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

30 lines
764 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 SharingRouter {
constructor(private app) {
this.addGetSharing();
this.addUpdateSharing();
}
private addGetSharing() {
this.app.get("/api/share/:directory",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.User)
//TODO: implement
);
};
private addUpdateSharing() {
2016-03-20 10:49:49 +01:00
this.app.post("/api/share/:directory",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.User)
//TODO: implement
);
};
}