Skip to content

Commit 8799bf7

Browse files
committed
remove TODO tag
1 parent 00a06c2 commit 8799bf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/api/APIController.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default class APIController {
6868
});
6969
});
7070

71-
// (TODO) POST Endpoint: /api/clans/:name/join
71+
// POST Endpoint: /api/clans/:name/join
7272
// Joins a specific clan by its name
7373
// Returns the joined clan
7474
this.app.post("/api/clans/:name/join", async (req: express.Request, res: express.Response) => {
@@ -104,7 +104,7 @@ export default class APIController {
104104
res.json(clan);
105105
});
106106

107-
// (TODO) POST Endpoint: /api/clans/:name/leave
107+
// POST Endpoint: /api/clans/:name/leave
108108
// Leaves a specific clan by its name
109109
// Returns all members of the clan after leaving
110110
this.app.post("/api/clans/:name/leave", async (req: express.Request, res: express.Response) => {

0 commit comments

Comments
 (0)