-
Notifications
You must be signed in to change notification settings - Fork 92
WIP: GoDaddy Contributions #110
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
Changes from all commits
2a8feb5
5f472be
ff07add
632a8ff
d75d469
8c448be
9fbb27d
0ab4726
4e81d27
aa1c4ce
fe02b78
2c1a042
c049f13
7784b80
7277023
ecb7a07
a9510bd
007e781
ea52c91
4ec15e4
ae824a4
56d3d19
a34132d
0e14478
1a2f528
03d4e9d
3a3da6b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,10 @@ | ||
| .DS_Store | ||
| .idea/ | ||
| *.seed | ||
| *.log | ||
| *.csv | ||
| *.dat | ||
| *.iml | ||
| *.out | ||
| *.pid | ||
| *.swp | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -167,6 +167,7 @@ function define(methods, name, options, fn) { | |
| * define('myMethod', { | ||
| * accepts: {arg: 'str', type: 'string'}, | ||
| * returns: {arg: 'str', type: 'string'} | ||
| * errors: [ { code: 404, message: 'Not Found', responseModel: 'Error' } ] | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bajtos do you have any comments here? I'm going to change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ritch - Please keep this Swagger 1.2 compliant, until 2.0 is stable and supported by the whole ecosystem
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ritch If I understand your intentions correctly, we will use If that's the case, then +1000.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
exactly
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This should be possible in the conversion. |
||
| * }, myMethod); | ||
| * }); | ||
| * function myMethod(str, cb) { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use
Array.isArray()There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ritch - I vaguely remember there being a reason Array.isArray() didn't work, but I can't remember for sure now