Files
nairobi/app/components/debates/form_component.rb
Javi Martín 755ad330a2 Move debate form partial to a component
We're going to rewrite most of the code, so we might as well treat it
like we treat new files.
2021-07-10 00:14:06 +02:00

11 lines
229 B
Ruby

class Debates::FormComponent < ApplicationComponent
include TranslatableFormHelper
include GlobalizeHelper
attr_reader :debate
delegate :suggest_data, to: :helpers
def initialize(debate)
@debate = debate
end
end