Skip to content

Commit

Permalink
start planning new models
Browse files Browse the repository at this point in the history
  • Loading branch information
IkeHunter committed Feb 1, 2024
1 parent 6b97d99 commit 7400c9c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/controllers/spotifyController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export const spotifySearch = (_: Request, res: Response) => {
/**
@swagger
#swagger.tags = ['Spotify']
#swagger.summary = "Not implemented"
*/
return responses.notImplemented(res)
}
Expand All @@ -82,6 +83,7 @@ export const spotifySearchTracks = (_: Request, res: Response) => {
/**
@swagger
#swagger.tags = ['Spotify']
#swagger.summary = "Not implemented"
*/
return responses.notImplemented(res)
}
Expand All @@ -90,6 +92,16 @@ export const spotifySearchTrackId = (_: Request, res: Response) => {
/**
@swagger
#swagger.tags = ['Spotify']
#swagger.summary = "Not implemented"
*/
return responses.notImplemented(res)
}

export const getCurrentlyPlaying = (_: Request, res: Response) => {
/**
@swagger
#swagger.tags = ['Spotify']
#swagger.summary = "Not implemented"
*/
return responses.notImplemented(res)
}
1 change: 1 addition & 0 deletions src/models/groupModel.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// TODO: Group model

0 comments on commit 7400c9c

Please sign in to comment.