Class: Decidim::Accountability::ProposalLinkedEvent

Inherits:
Events::SimpleEvent
  • Object
show all
Defined in:
app/events/decidim/accountability/proposal_linked_event.rb

Instance Method Summary collapse

Instance Method Details

#proposalObject



16
17
18
# File 'app/events/decidim/accountability/proposal_linked_event.rb', line 16

def proposal
  @proposal ||= resource.linked_resources(:proposals, "included_proposals").find_by(id: extra[:proposal_id])
end

#proposal_pathObject



8
9
10
# File 'app/events/decidim/accountability/proposal_linked_event.rb', line 8

def proposal_path
  @proposal_path ||= Decidim::ResourceLocatorPresenter.new(proposal).path
end

#proposal_titleObject



12
13
14
# File 'app/events/decidim/accountability/proposal_linked_event.rb', line 12

def proposal_title
  @proposal_title ||= translated_attribute(proposal.title)
end

#resource_textObject



20
21
22
# File 'app/events/decidim/accountability/proposal_linked_event.rb', line 20

def resource_text
  translated_attribute(resource.description)
end