class Gitdig::Commands::Pr

Public Instance Methods

team(team_id = nil) click to toggle source
# File lib/gitdig/commands/pr.rb, line 23
def team(team_id = nil)
  if options[:help]
    invoke :help, ['team']
  else
    require_relative 'pr/team'
    editor_exec(Gitdig::Commands::Pr::Team.new(team_id, options))
  end
end