lib/rails_band/action_controller/event/read_fragment.rb
# frozen_string_literal: true module RailsBand module ActionController module Event # A wrapper for the event that is passed to `read_fragment.action_controller`. class ReadFragment < BaseEvent def key @key ||= @event.payload.fetch(:key) end end end end end