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.
11 lines
313 B
Ruby
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
|