Class: Ossy::CLI::Github::Member

Inherits:
Commands::Core show all
Defined in:
lib/ossy/cli/github/member.rb

Instance Method Summary collapse

Instance Method Details

#call(name:, org:) ⇒ Object



17
18
19
20
21
22
23
# File 'lib/ossy/cli/github/member.rb', line 17

def call(name:, org:)
  result = client.member(name, org: org)

  if result
    puts result["login"]
  end
end