Guest User

Untitled

a guest
Oct 16th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. def change_setting key, value
  2. s = Setting.find_or_initialize_by_key key
  3. s.value = value
  4. if s.new_record?
  5. s.data_type = value.class.to_s.downcase
  6. s.category = 'app'
  7. end
  8.  
  9. s.save!
  10. end
  11.  
  12. def set_variant variant, logo, num_planet_images, sidebar_plus_mode, tutorial_above_title
  13. change_setting 'variant', variant
  14.  
  15. change_setting 'logo_filename', logo
  16.  
  17. change_setting 'num_planet_images', num_planet_images
  18.  
  19. change_setting 'sidebar_plus_mode', sidebar_plus_mode
  20.  
  21. change_setting 'tutorial_above_title', tutorial_above_title
  22.  
  23. BlueFrog.cache.clear
  24. end
Add Comment
Please, Sign In to add comment