Gary Passero
Gary Passero
Trying to use this and it seems like it is out of date with Rails 7 action_mailer interface. Is this gem still being maintained? Is it being used? if this...
We're using CurrentAttributes to track user_id: ``` class Current < ActiveSupport::CurrentAttributes attribute :user_id end ``` When we call `perform_later` on a job, this is reset in the caller's context: ```...
We sprinkle metadata into our job kwargs to enable lookup in the Dashboard, like this: ``` {"ad_id"=>"ad_qTB3kTjQeZEmptyx8JZ5", "ad_ref"=>"A-1012679", "line_item_gid"=>"gid://supply-side-platform/Orders::Types::ReservationLineItem/rli_Dd2LpagvXuqaZNAZt4yu", "purchase_order_id"=>"po_8o9yOwc88sfMQWFmjE8F", "_aj_ruby2_keywords"=>["purchase_order_id", "line_item_gid", "ad_ref", "ad_id"]} ``` * Searching for `po_8o9yOwc88sfMQWFmjE8F` finds...
We're actually using https://github.com/hanami/events, but I think that the repo/gem is abandoned. We like the simple/micro event bus it presents, but want to be a part of a community maintaining...
**Describe the bug** Setup an AA batch_action with a form, containing a select. I'm using dynamic form inputs, but the problem occurs with static ones: ``` batch_action :doit, form: ->...
Your nested form controller suggests that one can be used within another. From https://sub-xaero.github.io/stimulus-library/docs/controllers/form/NestedFormController#how-to-use, > If you want to use multiple levels of nested forms .... I have a form...
PR for #598
* NestedFormController sets the value on the destroyed input without triggering an event: `destroyInput.value = "1";` * useDirtyInputTracking will only updated based on `input` or `change` events Thus, NestedFormController will...