allow to put foodcoop config in database
This commit is contained in:
parent
a39c56fdf1
commit
dd3ac0971c
2 changed files with 1 additions and 13 deletions
12
db/schema.rb
12
db/schema.rb
|
@ -66,18 +66,6 @@ ActiveRecord::Schema.define(version: 20140521142651) do
|
||||||
|
|
||||||
add_index "assignments", ["user_id", "task_id"], name: "index_assignments_on_user_id_and_task_id", unique: true, using: :btree
|
add_index "assignments", ["user_id", "task_id"], name: "index_assignments_on_user_id_and_task_id", unique: true, using: :btree
|
||||||
|
|
||||||
create_table "configurable_settings", force: true do |t|
|
|
||||||
t.integer "configurable_id"
|
|
||||||
t.string "configurable_type"
|
|
||||||
t.integer "targetable_id"
|
|
||||||
t.string "targetable_type"
|
|
||||||
t.string "name", default: "", null: false
|
|
||||||
t.string "value_type"
|
|
||||||
t.text "value"
|
|
||||||
end
|
|
||||||
|
|
||||||
add_index "configurable_settings", ["name"], name: "index_configurable_settings_on_name", using: :btree
|
|
||||||
|
|
||||||
create_table "deliveries", force: true do |t|
|
create_table "deliveries", force: true do |t|
|
||||||
t.integer "supplier_id"
|
t.integer "supplier_id"
|
||||||
t.date "delivered_on"
|
t.date "delivered_on"
|
||||||
|
|
|
@ -26,7 +26,7 @@ class FoodsoftConfig
|
||||||
# Provides a nice accessor for config values
|
# Provides a nice accessor for config values
|
||||||
# FoodsoftConfig[:name] # => 'FC Test'
|
# FoodsoftConfig[:name] # => 'FC Test'
|
||||||
def [](key)
|
def [](key)
|
||||||
config[key]
|
RailsSettings::CachedSettings["foodcoop.#{self.scope}.#{key}"] || config[key]
|
||||||
end
|
end
|
||||||
|
|
||||||
# Loop through each foodcoop and executes the given block after setup config and database
|
# Loop through each foodcoop and executes the given block after setup config and database
|
||||||
|
|
Loading…
Reference in a new issue