Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
✨ move default state to confirmed
Browse files Browse the repository at this point in the history
  • Loading branch information
fgruchala committed Apr 10, 2019
1 parent fefeb18 commit 114f960
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class EditionsService {
});
}

public findOneFromConferenceHall(editionId, apiKey, state = 'accepted'): Promise<any> {
public findOneFromConferenceHall(editionId, apiKey, state = 'confirmed'): Promise<any> {
return fetch(`https://conference-hall.io/api/v1/event/${editionId}?key=${apiKey}&state=${state}`)
.then(res => res.json())
.then(res => {
Expand Down

0 comments on commit 114f960

Please sign in to comment.