rmoriz
rmoriz
Three issues: 1. I can confirm @hellojere's problem. example: ``` ruby class AccountDomainsController < …ApplicationController load_and_authorize_resource class: 'Domain' … private def domain_params params[:domain].permit(:full_name) end end ``` Error: `undefined method `permit'...
@madmax 1. what happens when you access the new action of your posts_controller example? 2. but why not stick to the naming convention? 3. ``` ruby gem 'rails', github: 'rails/rails'...
related: https://github.com/ryanb/cancan/pull/763#issuecomment-15081734 https://github.com/ryanb/cancan/issues/571#issuecomment-6318535
Actually your solution differs a lot compared to https://github.com/rails/strong_parameters and http://edgeguides.rubyonrails.org/action_controller_overview.html#strong-parameters (hint: require)
OAuth response.body is: {"error": "You're using an older version of the Dropbox API with a new API key. Please use the latest version."}
Turns out the `reportType` values have changed or were just wrong: http://interactivebrokers.github.io/tws-api/reuters_fundamentals.html#report_type 
Relevant source code: https://github.com/garywiz/chaperone/blob/6fbb8b6b1a90a1cf1cea646739f86fe9a576ee92/chaperone/cproc/subproc.py#L27
I see the same log entry. It may be caused by ``` n.n.n.n - - [18/Jun/2020:12:19:01 +0000] "POST /data-collector HTTP/1.1" 200 0 "-" "Chef Client/16.1.16 (r uby-2.7.1-p83; ohai-16.1.1; x86_64-linux; +https://gitlab.com/cinc-project/organization-subjects/wikis/home)"...
As far as I can see, goiardi does not implement the `POST /data-collector` endpoint but maps all `/data` to the data handler, which then produces the message. I was able...