Sha256: 04bbb775ff4cf39bc3ab3a66f0f56ca90e2038c563227294545949777ceb7dca
Contents?: true
Size: 1.12 KB
Versions: 3
Compression:
Stored size: 1.12 KB
Contents
module ActiveAdmin class Comment < ActiveRecord::Base self.table_name = "#{table_name_prefix}active_admin_comments#{table_name_suffix}" belongs_to :resource, polymorphic: true, optional: true 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 self.ransackable_attributes(auth_object = nil) ["author_id", "author_type", "body", "created_at", "id", "namespace", "resource_id", "resource_type", "updated_at"] end def set_resource_type self.resource_type = self.class.resource_type(resource) end end end
Version data entries
3 entries across 3 versions & 1 rubygems