Class: Pulitzer::DestroyPostTypeContentElements

Inherits:
Object
  • Object
show all
Defined in:
app/interactions/pulitzer/destroy_post_type_content_elements.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ptcet) ⇒ DestroyPostTypeContentElements

Returns a new instance of DestroyPostTypeContentElements.



4
5
6
7
# File 'app/interactions/pulitzer/destroy_post_type_content_elements.rb', line 4

def initialize(ptcet)
  self.post_type  = ptcet.post_type
  self.ptcet      = ptcet
end

Instance Attribute Details

#post_typeObject

Returns the value of attribute post_type.



2
3
4
# File 'app/interactions/pulitzer/destroy_post_type_content_elements.rb', line 2

def post_type
  @post_type
end

#ptcetObject

Returns the value of attribute ptcet.



2
3
4
# File 'app/interactions/pulitzer/destroy_post_type_content_elements.rb', line 2

def ptcet
  @ptcet
end

Instance Method Details

#callObject



9
10
11
12
13
14
15
# File 'app/interactions/pulitzer/destroy_post_type_content_elements.rb', line 9

def call
  post_type.posts.each do |post|
    post.preview_version.content_elements.where(label: ptcet.label).each do |ce|
      ce.destroy
    end
  end
end