Skip to content

Commit

Permalink
fix typo in conversion endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihai Moiseanu committed Feb 28, 2024
1 parent 101b014 commit 6d01f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mangopay/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ class Meta:
verbose_name = 'conversion_rate'
verbose_name_plural = 'conversion_rates'
url = {
'GET_CONVERSION_RATE': '/conversion/rate/%(debited_currency)s/%(credited_currency)s'
'GET_CONVERSION_RATE': '/conversions/rate/%(debited_currency)s/%(credited_currency)s'
}


Expand Down Expand Up @@ -320,8 +320,8 @@ class Meta:
verbose_name = 'instant_conversion'
verbose_name_plural = 'instant_conversions'
url = {
'CREATE_INSTANT_CONVERSION': '/instant-conversion',
'GET_INSTANT_CONVERSION': '/instant-conversion/%(id)s'
'CREATE_INSTANT_CONVERSION': '/conversions/instant-conversion',
'GET_INSTANT_CONVERSION': '/conversions/%(id)s'
}


Expand Down

0 comments on commit 6d01f51

Please sign in to comment.