Class: GithubCLI::Assignee
- Inherits:
-
API
- Object
- API
- GithubCLI::Assignee
show all
- Defined in:
- lib/github_cli/apis/assignee.rb
Class Method Summary
collapse
Methods inherited from API
configure, github_api, output, set_basic_auth
Class Method Details
.all(user, repo, params, options) ⇒ Object
8
9
10
11
12
|
# File 'lib/github_cli/apis/assignee.rb', line 8
def all(user, repo, params, options)
output options do
github_api(options).issues.assignees.list user, repo, params
end
end
|
.check(user, repo, assignee, params, options) ⇒ Object
14
15
16
17
18
|
# File 'lib/github_cli/apis/assignee.rb', line 14
def check(user, repo, assignee, params, options)
output options do
github_api(options).issues.assignees.check user, repo, assignee, params
end
end
|