Class: Pulitzer::CreatePostTypeFreeFormSections

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ffst) ⇒ CreatePostTypeFreeFormSections

Returns a new instance of CreatePostTypeFreeFormSections.



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

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

Instance Attribute Details

#ffstObject

Returns the value of attribute ffst.



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

def ffst
  @ffst
end

#old_labelObject

Returns the value of attribute old_label.



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

def old_label
  @old_label
end

#post_typeObject

Returns the value of attribute post_type.



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

def post_type
  @post_type
end

Instance Method Details

#callObject



9
10
11
12
13
14
15
16
17
18
# File 'app/interactions/pulitzer/create_post_type_free_form_sections.rb', line 9

def call
  post_type.posts.each do |post|
    if post.preview_version
      post.preview_version.free_form_sections.create do |ffs|
        ffs.name                   = ffst.name
        ffs.free_form_section_type = ffst
      end
    end
  end
end