forked from Rio517/slate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include host in authenticated API responses for events (#157)
- Loading branch information
1 parent
646a404
commit 37b4104
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,13 @@ The authenticated REST API endpoints for events only deal with events created in | |
"host_address": null, | ||
"max_attendees_count": null, | ||
"external_id": "control-shift-deliver-the-petition-to-the-wizard", | ||
"host": { | ||
"member_id": 123, | ||
"full_name": "Dorothy of Kansas", | ||
"email": "[email protected]", | ||
"phone_number": "555-555-5555", | ||
"postcode": "66012" | ||
}, | ||
"location": { | ||
"query": "wizard room", | ||
"latitude": "42.3376368", | ||
|
@@ -103,6 +110,13 @@ The response includes all the same data as the single-event endpoint for each ev | |
"host_address": null, | ||
"max_attendees_count": null, | ||
"external_id": "control-shift-deliver-the-petition-to-the-wizard", | ||
"host": { | ||
"member_id": 123, | ||
"full_name": "Dorothy of Kansas", | ||
"email": "[email protected]", | ||
"phone_number": "555-555-5555", | ||
"postcode": "66012" | ||
}, | ||
"location": { | ||
"query": "wizard room", | ||
"latitude": "42.3376368", | ||
|
@@ -203,6 +217,13 @@ the event `slug` is `chapter-meeting-1`. | |
"locale": "en-US", | ||
"host_address": null, | ||
"max_attendees_count": null, | ||
"host": { | ||
"member_id": 234, | ||
"full_name": "Gabrielle Giffords", | ||
"email": "[email protected]", | ||
"phone_number": null, | ||
"postcode": null | ||
}, | ||
"location": { | ||
"latitude": 39.168100, | ||
"longitude": -94.776063, | ||
|