Skip to content

Commit

Permalink
Fixed baseurl
Browse files Browse the repository at this point in the history
  • Loading branch information
DerCed committed Feb 15, 2024
1 parent 7e08ad0 commit 5b5264e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rest/RegistrationRest.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import axios from "axios";

export class RegistrationRest{
//baseUrl = "https://api.hackhpi.org/v1";
baseUrl = "http://localhost:8080/v1";
baseUrl = "https://api.hackhpi.org/v1";
//baseUrl = "http://localhost:8080/v1";

addRegistration(data){
return axios.post(this.baseUrl+"/registration", data)
Expand Down

0 comments on commit 5b5264e

Please sign in to comment.