Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the new fields for the event creation & editing #10

Merged
merged 2 commits into from
Mar 19, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
vendor/
tests/_reports
docs/meetup-api-docs
.project
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These look like IDE specific ignores, i will clean this up later on, but I recommend you add them to your global ignores list in ~/.gitignore, as it will make your life much easier.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ack, my bad. I know better than this too. :(

.buildpath
.settings/
42 changes: 41 additions & 1 deletion src/DMS/Service/Meetup/Resources/config/meetup_v2_services.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,18 @@
"location": "postField",
"required": false
},
"how_to_find_us": {
"location": "postField",
"required": false
},
"name": {
"location": "postField",
"required": true
},
"publish_status": {
"location": "postField",
"required": false
},
"question_{index}": {
"location": "postField",
"required": false
Expand Down Expand Up @@ -105,6 +113,10 @@
"location": "postField",
"required": false
},
"venue_visibility": {
"location": "postField",
"required": false
},
"waitlisting": {
"location": "postField",
"required": false
Expand Down Expand Up @@ -245,6 +257,14 @@
"EditEvent": {
"httpMethod": "POST",
"parameters": {
"announce": {
"location": "postField",
"required": false
},
"announce_message": {
"location": "postField",
"required": false
},
"description": {
"location": "postField",
"required": false
Expand Down Expand Up @@ -273,7 +293,11 @@
"location": "postField",
"required": false
},
"id": {
"hosts": {
"location": "postField",
"required": false
},
"how_to_find_us": {
"location": "uri",
"required": true
},
Expand All @@ -289,6 +313,10 @@
"location": "postField",
"required": false
},
"publish_status": {
"location": "postField",
"required": false
},
"question_edit_{id}": {
"location": "postField",
"required": false
Expand All @@ -309,6 +337,14 @@
"location": "postField",
"required": false
},
"rsvp_limit": {
"location": "postField",
"required": false
},
"simple_html_description": {
"location": "postField",
"required": false
},
"time": {
"location": "postField",
"required": false
Expand All @@ -317,6 +353,10 @@
"location": "postField",
"required": false
},
"venue_visibility": {
"location": "postField",
"required": false
},
"waitlisting": {
"location": "postField",
"required": false
Expand Down