Method: PortalModule::Command::Config::Show#orgs
- Defined in:
- lib/portal_module/command/config.rb
#orgs ⇒ Object
96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/portal_module/command/config.rb', line 96 def orgs with_loaded_config do say "Org Units:" output = [] PortalModule.configuration.orgs.each do |org, id| output << [org, id] end print_table output, indent: 8 end end |