Method: Cosmos::WidgetModel.names

Defined in:
lib/cosmos/models/widget_model.rb

.names(scope: nil) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/cosmos/models/widget_model.rb', line 41

def self.names(scope: nil)
  array = []
  all(scope: scope).each do |name, _widget|
    array << name
  end
  array
end