Fix artist path

This commit is contained in:
jeffvli 2023-04-23 14:25:09 -07:00
parent 438085633b
commit fa79b4cbe0

View file

@ -42,14 +42,14 @@ export const contract = c.router({
},
getAlbumArtistDetail: {
method: 'GET',
path: 'albumArtist/:id',
path: 'artist/:id',
responses: {
200: resultWithHeaders(ndType._response.albumArtist),
},
},
getAlbumArtistList: {
method: 'GET',
path: 'albumArtist',
path: 'artist',
query: ndType._parameters.albumArtistList,
responses: {
200: resultWithHeaders(ndType._response.albumArtistList),