Skip to content

Commit

Permalink
fix: invalid url in getPossibleValuesByField
Browse files Browse the repository at this point in the history
  • Loading branch information
mdwitr0 committed Jun 25, 2023
1 parent 0d4c098 commit 6b35da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/movie.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class MovieService implements IMovieService {
getPossibleValuesByField(
field: string,
): Promise<IResponse<PossibleValueDto[]>> {
return this.request.get(VERSION.V1, `/movie/possibleValues`, {
return this.request.get(VERSION.V1, `/movie/possible-values-by-field`, {
field,
});
}
Expand Down

0 comments on commit 6b35da3

Please sign in to comment.