MomentumCMS / momentum_cms

https://github.com/MomentumCMS/momentum_cms
MIT License
4 stars 0 forks source link

Site Settings #6

Closed Emerson closed 10 years ago

billxinli commented 10 years ago

https://github.com/ledermann/rails-settings Looks promising.

Emerson commented 10 years ago

Yup, I think we have a winner, love dat API

class MomentumCms::Site < ActiveRecord::Base
  has_settings do |s|
    s.key :dashboard, :defaults => { :theme => 'blue', :view => 'monthly', :filter => false }
    s.key :calendar,  :defaults => { :scope => 'company'}
  end
end
Emerson commented 10 years ago

Given the most recent pull request (#8), I think we can close this.