Marc Phillips

Results 4 comments of Marc Phillips

A decent workaround for this issue that I have been using is in the config/initializers dir I have created a file called `active_storage_api_modification.rb` that has `ActiveStorage::DirectUploadsController.instance_eval { skip_forgery_protection }` to...

I also had this issue when I started my first project with Jets today, and I worked around the issue by adding the following line in `.env.development`: `JETS_AWS_ACCOUNT=xx` This will...

Note that the array validation does work with this schema.

Finally, should the following schema ``` { type: 'object', required: ['value'], properties: { value: { type: %w(array object), items: { type: %w(string boolean number) }, additionalProperties: { type: 'string' }...