mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
30 lines
764 B
TypeScript
30 lines
764 B
TypeScript
///<reference path="../../typings/index.d.ts"/>
|
|
|
|
import {AuthenticationMWs} from "../middlewares/user/AuthenticationMWs";
|
|
import {UserRoles} from "../../common/entities/User";
|
|
|
|
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() {
|
|
this.app.post("/api/share/:directory",
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.User)
|
|
//TODO: implement
|
|
);
|
|
};
|
|
|
|
|
|
} |