Quinn

Results 37 comments of Quinn

I saw this too and I thought it was because I had subclassed the Devise::Mailer without including Devise::Controllers::UrlHelpers as described here: https://github.com/plataformatec/devise/wiki/How-To:-Use-custom-mailer Commenting the `config.mailer` line in my devise config...

@jainbasil Me too. I have taken to going to the Rails console and issuing a variant of @Owumaro's note above: ```ruby Zeitwerk::Loader.eager_load_all Rails.application.load_tasks Rake::Task['db:generate_trigger_migration'].invoke ``` It would be great for...

@jenseng Confirmed I can now generate migrations with the rake task in Rails 6.0.3.5, so I think you're right it's been fixed upstream.

I've been able to _almost_ get this working ([my source code](https://github.com/fishpercolator/name.pn/blob/main/app/javascript/controllers/likeness_uploader_controller.js)) by adding both `autoOpenFileEditor` and an `uppy.upload()` to the `file-editor:complete` method. The main outstanding problem is the user can...

I see my suggested improvements to the events as a workaround is being discussed in #4045 now so I'll follow that issue for updates. I'd imagine that's a smaller fix...

Hi @route - I'm just bringing this issue back to life because I've also experienced this same trouble with SortableJS today. My code is open source and my test is...

Oooof - just had a go at fixing this but it's *hard*. `counter_culture` tracks changes by inserting callbacks into the model that contains the `counter_culture` directive, but in order to...

Hi @baelter - those are just following links with Capybara. Turbolinks is enabled on the app so there is some work involved in the process of "following a link" but...

Whenever I saw tests fail in my own runs, the symptom was always an "unauthenticated" version of the page coming back when the previous request had been authenticated. I couldn't...

@joeldrapper Afaik there's no CurrentAttributes in there - it's just the standard cookie session store used with Devise/Warden.