Sha256: 66e55d0fb64293823746f3a5f925088c34fa4c850711fe1480f6eab8b3a49f72
Contents?: true
Size: 625 Bytes
Versions: 7
Compression:
Stored size: 625 Bytes
Contents
# frozen-string_literal: true module Decidim module Comments class CommentCreatedEvent < Decidim::Events::SimpleEvent include Decidim::Events::AuthorEvent delegate :author, to: :comment def resource_path resource_locator.path(url_params) end def resource_url resource_locator.url(url_params) end def resource_text comment.body end private def comment @comment ||= Decidim::Comments::Comment.find(extra[:comment_id]) end def url_params { anchor: "comment_#{comment.id}" } end end end end
Version data entries
7 entries across 7 versions & 1 rubygems