9 lines
198 B
Ruby
9 lines
198 B
Ruby
class Admin::Poll::Questions::Answers::Documents::IndexComponent < ApplicationComponent
|
|
attr_reader :answer
|
|
delegate :can?, to: :helpers
|
|
|
|
def initialize(answer)
|
|
@answer = answer
|
|
end
|
|
end
|