-
Notifications
You must be signed in to change notification settings - Fork 73
Open
Description
refinerycms v3.0.6
refinery-calendar v3.0.0
seeds.rb has code to generate page parts for events and venues but this results in refinery_page_parts with values for slug = 'title_body_slug_body' and title = '{:title=>"Body", :slug=>"body"}'
I think this code ...
Refinery::Pages.default_parts.each_with_index do |default_page_part, index| page.parts.create(:title => default_page_part, :body => nil, :position => index) end
should be ...
Refinery::Pages.default_parts.each_with_index do |default_page_part, index| page.parts.create(:title => default_page_part[:title], :slug => default_page_part[:slug], :body => nil, :position => index) end
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels