Sha256: 319577f1424d618b77327bdf246c9aaf099430f908dd6e3eca6df1aacf108b7b
Contents?: true
Size: 1006 Bytes
Versions: 6
Compression:
Stored size: 1006 Bytes
Contents
module ActiveAdmin class Comment < ActiveRecord::Base self.table_name = "#{table_name_prefix}active_admin_comments#{table_name_suffix}" belongs_to :resource, { polymorphic: true }.merge(ActiveAdmin::Dependency.rails.optional_belongs_to_flag) belongs_to :author, polymorphic: true validates_presence_of :body, :namespace, :resource before_create :set_resource_type # @return [String] The name of the record to use for the polymorphic relationship def self.resource_type(resource) ResourceController::Decorators.undecorate(resource).class.base_class.name.to_s end def self.find_for_resource_in_namespace(resource, namespace) where( resource_type: resource_type(resource), resource_id: resource, namespace: namespace.to_s ).order(ActiveAdmin.application.namespaces[namespace.to_sym].comments_order) end def set_resource_type self.resource_type = self.class.resource_type(resource) end end end
Version data entries
6 entries across 6 versions & 2 rubygems