Kyle Keesling
Kyle Keesling
I had this issue but was able to get rolling by using this declaration instead: `const Skycons = require("skycons")(window)`
As mentioned in the [inviting users issue](https://github.com/lazaronixon/authentication-zero/issues/29), I'd be happy to share how I accomplished this. Particularly since these two concepts are so tightly related.
Would love to see this merged, and would be happy to help if there's anything I can do. In the meantime I guess I'll plan to run on the PR...
Likewise, I have the following config and it does not notify Honeybadger when an error occurs: ```ruby config.solid_queue.on_thread_error = ->(exception) { Honeybadger.notify(exception, context: {error_message: exception.message, source: "solid_queue"}) } ```
@rosa I started to wonder that based on the wording `thread` instead of `job`. Thanks for the clarification!
Using the Sentry example Rosa provided, I was able to get the following working in my app by adding it to `ApplicationJob`: ```ruby class ApplicationJob < ActiveJob::Base around_perform do |job,...
I'm seeing a similar issue when attempting to use tom-select 2.4.0 and above with the [trix](https://github.com/basecamp/trix) editor. When any page loads that also has a trix editor on it I...
Great to hear, thank you! If there's something I can do to help, please let me know. I'm not sure how good I am at digging into ActiveJob internals, but...
I like this idea. To solve this for now I created a generic Job that allows me to pass rake tasks in as the argument: ```ruby # frozen_string_literal: true class...
Hi Igor, great addition here! I ran into an additional step I had to work through to get this rolling and thought I'd share in case anyone else is in...