Fix artist path
This commit is contained in:
parent
438085633b
commit
fa79b4cbe0
1 changed files with 2 additions and 2 deletions
|
@ -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),
|
||||
|
|
Reference in a new issue