7 lines
251 B
Ruby
7 lines
251 B
Ruby
class EditContentButtonComponent < ViewComponent::Base
|
|
def initialize(context:, key:, rich_text: false, redirect_to: nil)
|
|
@editable_content = EditableContent.find_or_create_by(context:, key:, rich_text:)
|
|
@redirect_to = redirect_to
|
|
end
|
|
end
|