OSDN Git Service

fic picture publishing
[pettanr/pettanr.git] / app / models / ground_color.rb
index cf78ded..cb16e67 100644 (file)
@@ -1,6 +1,5 @@
 class GroundColor < Peta::Element
   load_manifest
-  include ElementInspire
   belongs_to :panel
   belongs_to :color
   
@@ -12,10 +11,10 @@ class GroundColor < Peta::Element
   validates :z, :presence => true, :numericality => {:greater_than => 0}
   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
   
-  def self.colum_structures
-    @@colum_structures ||= {
-      :code => {
-        :helper => 'panels/color_helper'
+  def self.by_author_list_includes
+    {
+      :panel => {
+        :author => {}
       }
     }
   end
@@ -55,11 +54,6 @@ class GroundColor < Peta::Element
     self.panel_id = pid
   end
   
-  def visible? operators
-    return false unless super
-    self.owner_model.visible? operators
-  end
-  
   def div_offset
     xy ? xy : 0
   end
@@ -111,14 +105,7 @@ class GroundColor < Peta::Element
     r
   end
   
-  def boost
-  end
-  
-  def tag_element_type
-    'ground_color'
-  end
-  
-  def self.list_where
+  def self.public_list_where
     'panels.publish > 0'
   end