lib/rflow/configuration.rb in rflow-1.0.0a2 vs lib/rflow/configuration.rb in rflow-1.0.0a3
- old
+ new
@@ -209,9 +209,10 @@
end
def [](name); Setting.find_by_name(name).value rescue nil; end
def settings; Setting.all; end
def shards; Shard.all; end
+ def connections; Connection.all; end
def shard(uuid); Shard.find_by_uuid uuid; end
def components; Component.all; end
def component(uuid); Component.find_by_uuid uuid; end
def available_components; Configuration.available_components; end
end