Class: GithubCLI::Watching

Inherits:
API
  • Object
show all
Defined in:
lib/github_cli/apis/watching.rb

Constant Summary

Constants inherited from API

API::ENDPOINT

Class Method Summary collapse

Methods inherited from API

configure_api, github_api, output

Class Method Details

.list(user, repo, params, format) ⇒ Object



8
9
10
11
12
# File 'lib/github_cli/apis/watching.rb', line 8

def list(user, repo, params, format)
  output format do
    github_api.repos.watching.list user, repo, params
  end
end

.start(user, repo, params, format) ⇒ Object



26
27
28
29
30
# File 'lib/github_cli/apis/watching.rb', line 26

def start(user, repo, params, format)
  output format do
    github_api.repos.watching.watch user, repo, params
  end
end

.stop(user, repo, params, format) ⇒ Object



32
33
34
35
36
# File 'lib/github_cli/apis/watching.rb', line 32

def stop(user, repo, params, format)
  output format do
    github_api.repos.watching.unwatch user, repo, params
  end
end

.watched(params, format) ⇒ Object



14
15
16
17
18
# File 'lib/github_cli/apis/watching.rb', line 14

def watched(params, format)
  output format do
    github_api.repos.watching.watched params
  end
end

.watching?(user, repo, params, format) ⇒ Boolean

Returns:

  • (Boolean)


20
21
22
23
24
# File 'lib/github_cli/apis/watching.rb', line 20

def watching?(user, repo, params, format)
  output format do
    github_api.repos.watching.watching? user, repo, params
  end
end