File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) => {
You can’t perform that action at this time.
0 commit comments