Sha256: f7e244906cc3283faaaf9e19aa647c4e245f09ac0e952987df472e15b40e6c2d

Contents?: true

Size: 852 Bytes

Versions: 7

Compression:

Stored size: 852 Bytes

Contents

# frozen_string_literal: true

require "decidim/comments/admin"
require "decidim/comments/engine"
require "decidim/comments/admin_engine"

module Decidim
  # This module contains all the logic related to the comments component.
  # It exposes a single entry point as a rails helper method to render
  # a React component which handle all the comments render and logic.
  module Comments
    autoload :CommentsHelper, "decidim/comments/comments_helper"
    autoload :AddCommentType, "decidim/comments/api/add_comment_type"
    autoload :CommentMutationType, "decidim/comments/api/comment_mutation_type"
    autoload :CommentType, "decidim/comments/api/comment_type"
    autoload :Commentable, "decidim/comments/commentable"
    autoload :CommentSerializer, "decidim/comments/comment_serializer"
    autoload :Export, "decidim/comments/export"
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
decidim-comments-0.12.2 lib/decidim/comments.rb
decidim-comments-0.12.1 lib/decidim/comments.rb
decidim-comments-0.12.0 lib/decidim/comments.rb
decidim-comments-0.11.2 lib/decidim/comments.rb
decidim-comments-0.12.0.pre lib/decidim/comments.rb
decidim-comments-0.11.1 lib/decidim/comments.rb
decidim-comments-0.11.0.pre1 lib/decidim/comments.rb