1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/routes/SharingRouter.ts

29 lines
668 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 SharingRouter {
public static route(app: any) {
this.addGetSharing(app);
this.addUpdateSharing(app);
}
private static addGetSharing(app) {
app.get("/api/share/:directory",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.User)
//TODO: implement
);
};
private static addUpdateSharing(app) {
app.post("/api/share/:directory",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.User)
//TODO: implement
);
};
}