File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ class EndpointsV1:
1717 signUpAuthMagicLinkPath = "/v1/auth/signup/magiclink"
1818 verifyMagicLinkAuthPath = "/v1/auth/magiclink/verify"
1919 publicKeyPath = "/v1/keys"
20- refreshTokenPath = "/v1/refresh"
21- logoutPath = "/v1/logoutall"
20+ refreshTokenPath = "/v1/auth/ refresh"
21+ logoutPath = "/v1/auth/ logoutall"
2222
2323
2424class DeliveryMethod (Enum ):
Original file line number Diff line number Diff line change @@ -263,13 +263,13 @@ def test_compose_verify_code_url(self):
263263 def test_compose_refresh_token_url (self ):
264264 self .assertEqual (
265265 AuthClient ._compose_refresh_token_url (),
266- "/v1/refresh" ,
266+ "/v1/auth/ refresh" ,
267267 )
268268
269269 def test_compose_logout_url (self ):
270270 self .assertEqual (
271271 AuthClient ._compose_logout_url (),
272- "/v1/logoutall" ,
272+ "/v1/auth/ logoutall" ,
273273 )
274274
275275 def test_logout (self ):
You can’t perform that action at this time.
0 commit comments