Method: Gitlab::CLI::Helpers.method_owners
- Defined in:
- lib/gitlab/cli_helpers.rb
permalink .method_owners ⇒ Array<Hash>
Returns method names and their owners
29 30 31 32 33 34 35 36 |
# File 'lib/gitlab/cli_helpers.rb', line 29 def method_owners @method_owners ||= actions.map do |action| { name: action.to_s, owner: client.method(action).owner.to_s } end end |