Riley James
Riley James
I'm facing this issue as well. I've written two tests that related to documentation & examples for route params. https://github.com/rjaus/grape-swagger/commit/dd98a217b166ca3799eb4fff8fae335a67202a3a I'm happy to try and fix it too, if someone...
I have a very similar issue, which I believe is a bug. I've written a test: When using the combination of a required param and a custom validator, the custom...
Setting fail_fast: true & allow_blank: false (ensuring that allow_blank: false comes *before*) ```ruby params do requires :date, allow_blank: false, performance_date: true, type: Date, desc: "Date of the performance data", fail_fast:...
```ruby params do requires :date, performance_date: true, type: Date, desc: "Date of the performance data" end ``` Custom Validator ```ruby class API::Validations::PerformanceDate < Grape::Validations::Base def validate_param!(attr_name, params) unless params[attr_name] <...
@nganbread jenks has moved on from Xero. @RettBehrens is heading up SDKs now, so he’s your best bet for .net.
Heya @yosefmah. I was contracting with Xero, but I finished up in December last year. @RettBehrens is your best bet going forward.
Thanks for reporting @JSFernandes. Agree with your thoughts here. We'll handle this internally, as it's a minor change & will be required upstream in the SDK generators or OpenAPI Spec...
``` stateDiagram [*] --> First state First { [*] --> second second --> [*] } ```
Thank you, that worked. I updated to the latest version of the extension, and it now seems to output the mermaid graphs as their markdown syntax (unrendered). Your solution worked...
This gem was created before Lineitems had Id's. Lineitem Id's were introduced as part of "Linked Transactions", which is used for Billable Expenses. Docs: https://developer.xero.com/documentation/api/accounting/linkedtransactions#overview Billable Expenses Demo: https://www.youtube.com/watch?v=9gwHEZudsNA Prior...