Patrick Lindsay
Patrick Lindsay
Interesting! @paulcc You have examples of the fixes? I'd be interested in forking the gem and fixing this. Currently we've stopped using the gem. Instead we're using Heroku Scheduler as...
@drsharp You could use [Heroku Scheduler](https://devcenter.heroku.com/articles/scheduler) for that by the sounds of it. Just set it up to run `rake jobs:workoff` every day or so.
I've [created a fork](https://github.com/patricklindsay/workless/tree/fixes) which; - Removes the Middleware, replacing it with a controller mixin which can be easily consumed and overridden if required. To prevent request rate issues the...
The settings area is currently for admins (developers) only. It's super basic, there isn't any validation of the fields and they're all text. Ideally there would be a pattern of...
I'd go with option A. Before Integral allows the user to delete a page it should first check if that page is the homepage. If it is return error message.
This validation is carried out by Parsley (client side only) - It automatically validates the field with a URL regex because as it is a URL type. Workaround for this...
Usually `404` error or `MissingEntryError` is caused by having not run `rails block_editor:webpacker:compile`. If you can you share a minimal example app that is experiencing the issue then I'll look...