Class: Decidim::Comments::CommentVotedEvent

Inherits:
Events::SimpleEvent show all
Includes:
CommentEvent
Defined in:
decidim-comments/app/events/decidim/comments/comment_voted_event.rb

Direct Known Subclasses

CommentDownvotedEvent, CommentUpvotedEvent

Instance Method Summary collapse

Methods inherited from Events::SimpleEvent

#email_intro, #email_outro, #email_subject, #email_subject_i18n_options, #event_has_roles?, i18n_attributes, #i18n_options, #i18n_scope, #notification_title, #participatory_space_url, #resource_path, #resource_text, #resource_url

Methods included from SanitizeHelper

#decidim_html_escape, #decidim_sanitize, #decidim_sanitize_admin, #decidim_sanitize_editor, #decidim_sanitize_editor_admin, #decidim_sanitize_newsletter, #decidim_url_escape, included

Methods included from Decidim::ComponentPathHelper

#can_be_managed?, #main_component_path, #main_component_url, #manage_component_path

Methods inherited from Events::BaseEvent

#content_in_same_language?, #organization, #resource_locator, #resource_path, #resource_text, #resource_title, #resource_url, #safe_resource_text, #safe_resource_translated_text, #translation_missing?, type

Methods included from TranslatableAttributes

#default_locale?

Constructor Details

#initialize(resource:, event_name:, user:, user_role: nil, extra: nil) ⇒ CommentVotedEvent

Returns a new instance of CommentVotedEvent.



11
12
13
14
# File 'decidim-comments/app/events/decidim/comments/comment_voted_event.rb', line 11

def initialize(resource:, event_name:, user:, user_role: nil, extra: nil)
  resource = target_resource(resource)
  super
end

Instance Method Details

#downvotesObject



20
21
22
# File 'decidim-comments/app/events/decidim/comments/comment_voted_event.rb', line 20

def downvotes
  extra[:downvotes]
end

#perform_translation?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'decidim-comments/app/events/decidim/comments/comment_voted_event.rb', line 24

def perform_translation?
  false
end

#upvotesObject



16
17
18
# File 'decidim-comments/app/events/decidim/comments/comment_voted_event.rb', line 16

def upvotes
  extra[:upvotes]
end