Class: Pulitzer::CreateSingletonPost
- Inherits:
-
Object
- Object
- Pulitzer::CreateSingletonPost
- Defined in:
- app/interactions/pulitzer/create_singleton_post.rb
Instance Attribute Summary collapse
-
#post_type ⇒ Object
Returns the value of attribute post_type.
-
#title ⇒ Object
Returns the value of attribute title.
Instance Method Summary collapse
- #call ⇒ Object
-
#initialize(post_type) ⇒ CreateSingletonPost
constructor
A new instance of CreateSingletonPost.
Constructor Details
#initialize(post_type) ⇒ CreateSingletonPost
Returns a new instance of CreateSingletonPost.
4 5 6 7 |
# File 'app/interactions/pulitzer/create_singleton_post.rb', line 4 def initialize(post_type) self.post_type = post_type self.title = post_type.name end |
Instance Attribute Details
#post_type ⇒ Object
Returns the value of attribute post_type.
2 3 4 |
# File 'app/interactions/pulitzer/create_singleton_post.rb', line 2 def post_type @post_type end |
#title ⇒ Object
Returns the value of attribute title.
2 3 4 |
# File 'app/interactions/pulitzer/create_singleton_post.rb', line 2 def title @title end |
Instance Method Details
#call ⇒ Object
9 10 11 12 13 14 |
# File 'app/interactions/pulitzer/create_singleton_post.rb', line 9 def call if post_type.singular? && !post_type.posts.any? singleton_post = post_type.posts.create(title: title) Pulitzer::CreatePostContentElements.new(singleton_post).call end end |