Class: Decidim::Comments::CommentVotedEvent
- Inherits:
-
Events::SimpleEvent
- Object
- Events::SimpleEvent
- Decidim::Comments::CommentVotedEvent
show all
- Includes:
- CommentEvent
- Defined in:
- decidim-comments/app/events/decidim/comments/comment_voted_event.rb
Instance Method Summary
collapse
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
#downvotes ⇒ Object
20
21
22
|
# File 'decidim-comments/app/events/decidim/comments/comment_voted_event.rb', line 20
def downvotes
[:downvotes]
end
|
24
25
26
|
# File 'decidim-comments/app/events/decidim/comments/comment_voted_event.rb', line 24
def perform_translation?
false
end
|
#upvotes ⇒ Object
16
17
18
|
# File 'decidim-comments/app/events/decidim/comments/comment_voted_event.rb', line 16
def upvotes
[:upvotes]
end
|