automatic groups should be bootstrapped
This commit is contained in:
parent
805feca5f2
commit
6e1198334c
|
@ -89,6 +89,12 @@ class Group < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def self.ensure_automatic_groups!
|
||||||
|
AUTO_GROUPS.keys.each do |name|
|
||||||
|
refresh_automatic_group!(name) unless lookup_group(name)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def self.[](name)
|
def self.[](name)
|
||||||
lookup_group(name) || refresh_automatic_group!(name)
|
lookup_group(name) || refresh_automatic_group!(name)
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Group.ensure_automatic_groups!
|
Loading…
Reference in New Issue