Dante Soares
Dante Soares
It's not just dictionaries. When a .env file is generated using `shlex.quote()` and one of the string values contains a single quote (like a password for example) then the value...
In particular, the output of `shlex.quote()` when it wraps quotes, which looks like `'"'"'`, is not supported. Workaround is to use a .env file with `export` on every line and...
There is at least one case where nested `anyOf`/`oneOf`/`allOf` would be necessary or at least make it a lot easier to use swagger-ui without redesigning the schemas: anything based on...
The trick for me to avoid this error was to check the response body and not write it if it had already been modified, even if there shouldn't be any...
What would be necessary for this? I assume making most of the controller routes able to return JSON responses and that's it?
Sorry for not seeing this earlier, but `acts_as_commontator` sets dependent: :destroy and there seems to currently be no way to prevent that.
You can do something like https://github.com/lml/commontator/blob/master/app/controllers/commontator/comments_controller.rb#L37-L39 You can get the thread with `object.commontator_thread` Other lines in this method are access control (which you probably already handle yourself), subscriptions and comment...
If you are in dev mode, did you remember to restart the server after copying the file? It's possible something changed in Rails 7 and broke this feature though, since...
The Rails sanitizer that Commontator uses is actually lenient enough that users can probably add `` tags, though there's no way to upload them through Commontator. You could probably do...
Seems like the way to do this would be to add support for Active Storage + Rails 6 Action Text. I'll rename the issue.