Class: Pulitzer::PostType
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Pulitzer::PostType
- Defined in:
- app/models/pulitzer/post_type.rb
Class Method Summary collapse
Instance Method Summary collapse
- #has_free_form_sections? ⇒ Boolean
- #has_templated_content_elements? ⇒ Boolean
- #singleton_post ⇒ Object
- #singleton_post? ⇒ Boolean
- #singular? ⇒ Boolean
Class Method Details
.named(label) ⇒ Object
15 16 17 |
# File 'app/models/pulitzer/post_type.rb', line 15 def self.named(label) self.find_by(name: label) end |
Instance Method Details
#has_free_form_sections? ⇒ Boolean
35 36 37 |
# File 'app/models/pulitzer/post_type.rb', line 35 def has_free_form_sections? free_form_section_types.any? end |
#has_templated_content_elements? ⇒ Boolean
31 32 33 |
# File 'app/models/pulitzer/post_type.rb', line 31 def has_templated_content_elements? content_element_types.any? end |
#singleton_post ⇒ Object
23 24 25 |
# File 'app/models/pulitzer/post_type.rb', line 23 def singleton_post posts.first end |
#singleton_post? ⇒ Boolean
27 28 29 |
# File 'app/models/pulitzer/post_type.rb', line 27 def singleton_post? !!singleton_post end |
#singular? ⇒ Boolean
19 20 21 |
# File 'app/models/pulitzer/post_type.rb', line 19 def singular? !plural end |