Files
openfoodnetwork/app/components/webhook_endpoint_form_component.rb
2025-12-10 10:28:11 +11:00

13 lines
250 B
Ruby

# frozen_string_literal: true
class WebhookEndpointFormComponent < ViewComponent::Base
def initialize(webhooks:, webhook_type:)
@webhooks = webhooks
@webhook_type = webhook_type
end
private
attr_reader :webhooks, :webhook_type
end