Use new urls for user auth
This commit is contained in:
parent
d42cbdf78f
commit
67cd4a82c3
2 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ namespace Website.Data {
|
|||
|
||||
public async Task<User> Authenticate(LoginRequest request) {
|
||||
try {
|
||||
return await Post<User>("authenticate", request);
|
||||
return await Post<User>("/user/authenticate", request);
|
||||
}
|
||||
catch (ApiCallException) {
|
||||
return null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue