Implemented the group.ts routes into the v1 index.ts
This commit is contained in:
parent
0bc987943f
commit
8f0c6fb30f
@ -6,6 +6,7 @@ import projectRoutes from "./project";
|
|||||||
import keyRoutes from "./key";
|
import keyRoutes from "./key";
|
||||||
import memberRoutes from "./member";
|
import memberRoutes from "./member";
|
||||||
import infoRoutes from "./info";
|
import infoRoutes from "./info";
|
||||||
|
import groupRoutes from "./group";
|
||||||
|
|
||||||
const app: Router = Router();
|
const app: Router = Router();
|
||||||
|
|
||||||
@ -18,5 +19,6 @@ app.use("/user", accountRoutes);
|
|||||||
app.use("/project", authenticate, projectRoutes);
|
app.use("/project", authenticate, projectRoutes);
|
||||||
app.use("/key", authenticate, keyRoutes);
|
app.use("/key", authenticate, keyRoutes);
|
||||||
app.use("/member", authenticate, memberRoutes);
|
app.use("/member", authenticate, memberRoutes);
|
||||||
|
app.use("/group", authenticate, groupRoutes);
|
||||||
|
|
||||||
export default app;
|
export default app;
|
Loading…
x
Reference in New Issue
Block a user