9 lines
185 B
Ruby
9 lines
185 B
Ruby
class Widget::Feeds::ProcessComponent < ApplicationComponent
|
|
delegate :image_path_for, to: :helpers
|
|
attr_reader :process
|
|
|
|
def initialize(process)
|
|
@process = process
|
|
end
|
|
end
|