Files
nairobi/lib/tasks/web_sections.rake
iagirre 3690cae458 Apply banner style to the new banners
Banner sections can be saved (one banner can appear in several sections)
If the hex color is changed in the textfield, the color of the color picker changes.
2018-07-12 10:16:47 -04:00

11 lines
313 B
Ruby

namespace :web_sections do
desc "Generate web sections for banners"
task generate: :environment do
WebSection.create(name: 'homepage')
WebSection.create(name: 'debates')
WebSection.create(name: 'proposals')
WebSection.create(name: 'budgets')
WebSection.create(name: 'more_info')
end
end