A corporation manager and dashboard for EVE Online
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

23 lignes
602 B

  1. class AdminSetting < ActiveRecord::Base
  2. def self.add(key, value)
  3. self.create(key: key, value: value)
  4. end
  5. def self.get(key)
  6. existing = Rails.cache.read("admin_setting/#{key}")
  7. return existing unless existing.nil?
  8. setting = self.find_by(key: key)
  9. return nil if setting.nil?
  10. Rails.cache.write("admin_setting/#{key}", setting.value)
  11. setting.value
  12. end
  13. def self.set(key, value)
  14. existing = self.get(key)
  15. return if existing.nil? || existing == value
  16. self.find_by(key: key).update(value: value)
  17. Rails.cache.write("admin_setting/#{key}", value)
  18. end
  19. end