Bart Agapinan

Results 4 comments of Bart Agapinan

So I fixed this by adding `route: ''`, `method: :post`, and `extended_parameters: {}` to my failing example metadata.

This creates invalid OpenAPI docs, since there's a missing response code. Not sure how that's expected to be set - `expect(status).to eq(200)` after a `do_callback` raises an error: `undefined local...

This is also a problem for Devise users that use a model other than User for authentication. If you're authenticating a Person, for example, Devise creates current_person instead of current_user....

I'm seeing something similar, and I'm guessing that it has something to do with time changes: ``` Chronic.parse("2023-03-12 12:15am") => nil Chronic.parse("2023-03-12 1:15am") => 2023-03-12 00:15:00 -0800. 2023-03-12 01:15:00 -0800...