-
Notifications
You must be signed in to change notification settings - Fork 88
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
Feat: [#133] Add All and Queries methods to Request #118
Conversation
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.
Only add All
and Queries
methods, other methods just change order.
// DEPRECATED: Use input instead. Retrieve a form string item from the post: /users POST:id=1, | ||
Form(key string, defaultValue ...string) string | ||
// Json Retrieve data from the post: /users JSON:{"id": 1} | ||
// DEPRECATED: Use input instead. Retrieve data from the post: /users JSON:{"id": 1} | ||
Json(key string, defaultValue ...string) string |
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.
Deprecate these methods.
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## master #118 +/- ##
==========================================
- Coverage 53.36% 52.95% -0.41%
==========================================
Files 105 105
Lines 7500 7558 +58
==========================================
Hits 4002 4002
- Misses 3219 3277 +58
Partials 279 279
☔ View full report in Codecov by Sentry. |
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.
LGTM
Close: goravel/goravel#133