Skip to content

Instantly share code, notes, and snippets.

@wnstn
Created May 8, 2012 16:20
Show Gist options
  • Save wnstn/2636912 to your computer and use it in GitHub Desktop.
Save wnstn/2636912 to your computer and use it in GitHub Desktop.
site = Site.find_by_subdomain('academy')
page = site.pages.find_by_slug('about-faculty')
4.times do |i|
id = i + 1
tab = page.widgets.find_by_name("tab_#{id}")
10.times do |j|
faculty_member = tab.children.find_by_name("faculty_#{j}")
faculty_member.children << CheckboxWidget.create!(:name => "featured_#{j}")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment