Class: Pageflow::CommonEntrySeedHelper::PageTypesSeed Private
- Inherits:
-
Object
- Object
- Pageflow::CommonEntrySeedHelper::PageTypesSeed
- Defined in:
- app/helpers/pageflow/common_entry_seed_helper.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #config ⇒ Object readonly private
Instance Method Summary collapse
- #as_json ⇒ Object private
-
#initialize(config) ⇒ PageTypesSeed
constructor
private
A new instance of PageTypesSeed.
Constructor Details
#initialize(config) ⇒ PageTypesSeed
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of PageTypesSeed.
24 25 26 |
# File 'app/helpers/pageflow/common_entry_seed_helper.rb', line 24 def initialize(config) @config = config end |
Instance Attribute Details
#config ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
22 23 24 |
# File 'app/helpers/pageflow/common_entry_seed_helper.rb', line 22 def config @config end |
Instance Method Details
#as_json ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
28 29 30 31 32 |
# File 'app/helpers/pageflow/common_entry_seed_helper.rb', line 28 def as_json config.page_types.each_with_object({}) do |page_type, result| result[page_type.name.to_sym] = page_type_seed(page_type) end end |