Module: Octokit::Client::Apps
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Included In:
| |
Defined in: | lib/octokit/client/apps.rb |
Overview
Methods for the Apps
API
Instance Method Summary
-
#add_repo_to_installation(installation, repo, options = {})
Alias for #add_repository_to_app_installation.
-
#add_repository_to_app_installation(installation, repo, options = {}) ⇒ Boolean
(also: #add_repo_to_installation)
Add a single repository to an installation.
-
#app(options = {}) ⇒ Sawyer::Resource
Get the authenticated App.
-
#app_hook_delivery(delivery_id, options = {}) ⇒ <Sawyer::Resource>
Returns a delivery for the webhook configured for a GitHub App.
-
#create_app_installation_access_token(installation, options = {}) ⇒ <Sawyer::Resource>
(also: #create_installation_access_token)
Create a new installation token.
-
#create_installation_access_token(installation, options = {})
Alias for #create_app_installation_access_token.
-
#delete_installation(installation, options = {}) ⇒ Boolean
Delete an installation and uninstall a GitHub App.
-
#deliver_app_hook(delivery_id, options = {}) ⇒ Boolean
Redeliver a delivery for the webhook configured for a GitHub App.
-
#find_app_installations(options = {})
Alias for #list_app_installations.
-
#find_installation_repositories_for_user(installation, options = {}) ⇒ Sawyer::Resource
List repositories accessible to the user for an installation.
-
#find_installations(options = {})
Alias for #list_app_installations.
-
#find_organization_installation(organization, options = {}) ⇒ Sawyer::Resource
Enables an app to find the organization's installation information.
-
#find_repository_installation(repo, options = {}) ⇒ Sawyer::Resource
Enables an app to find the repository's installation information.
-
#find_user_installation(user, options = {}) ⇒ Sawyer::Resource
Enables an app to find the user's installation information.
-
#find_user_installations(options = {})
Alias for #list_user_installations.
-
#installation(id, options = {}) ⇒ Sawyer::Resource
Get a single installation.
-
#list_app_hook_deliveries(options = {}) ⇒ Array<Hash>
Returns a list of webhook deliveries for the webhook configured for a GitHub App.
-
#list_app_installation_repositories(options = {}) ⇒ Sawyer::Resource
(also: #list_installation_repos)
List repositories that are accessible to the authenticated installation.
-
#list_app_installations(options = {}) ⇒ Array<Sawyer::Resource>
(also: #find_installations, #find_app_installations)
List all installations that belong to an App.
-
#list_installation_repos(options = {})
Alias for #list_app_installation_repositories.
-
#list_user_installations(options = {}) ⇒ Sawyer::Resource
(also: #find_user_installations)
List all installations that are accessible to the authenticated user.
-
#remove_repo_from_installation(installation, repo, options = {})
Alias for #remove_repository_from_app_installation.
-
#remove_repository_from_app_installation(installation, repo, options = {}) ⇒ Boolean
(also: #remove_repo_from_installation)
Remove a single repository to an installation.
Instance Method Details
#add_repo_to_installation(installation, repo, options = {})
Alias for #add_repository_to_app_installation.
# File 'lib/octokit/client/apps.rb', line 131
alias add_repo_to_installation add_repository_to_app_installation
#add_repository_to_app_installation(installation, repo, options = {}) ⇒ Boolean
Also known as: #add_repo_to_installation
Add a single repository to an installation
# File 'lib/octokit/client/apps.rb', line 128
def add_repository_to_app_installation(installation, repo, = {}) boolean_from_response :put, "user/installations/#{installation}/repositories/#{repo}", end
#app(options = {}) ⇒ Sawyer::Resource
Get the authenticated App
# File 'lib/octokit/client/apps.rb', line 14
def app( = {}) get 'app', end
#app_hook_delivery(delivery_id, options = {}) ⇒ <Sawyer::Resource
>
Returns a delivery for the webhook configured for a GitHub App.
# File 'lib/octokit/client/apps.rb', line 194
def app_hook_delivery(delivery_id, = {}) get "/app/hook/deliveries/#{delivery_id}", end
#create_app_installation_access_token(installation, options = {}) ⇒ <Sawyer::Resource
>
Also known as: #create_installation_access_token
Create a new installation token
# File 'lib/octokit/client/apps.rb', line 64
def create_app_installation_access_token(installation, = {}) post "app/installations/#{installation}/access_tokens", end
#create_installation_access_token(installation, options = {})
Alias for #create_app_installation_access_token.
# File 'lib/octokit/client/apps.rb', line 67
alias create_installation_access_token create_app_installation_access_token
#delete_installation(installation, options = {}) ⇒ Boolean
Delete an installation and uninstall a GitHub App
# File 'lib/octokit/client/apps.rb', line 169
def delete_installation(installation, = {}) boolean_from_response :delete, "app/installations/#{installation}", end
#deliver_app_hook(delivery_id, options = {}) ⇒ Boolean
Redeliver a delivery for the webhook configured for a GitHub App.
# File 'lib/octokit/client/apps.rb', line 206
def deliver_app_hook(delivery_id, = {}) boolean_from_response :post, "app/hook/deliveries/#{delivery_id}/attempts", end
#find_app_installations(options = {})
Alias for #list_app_installations.
# File 'lib/octokit/client/apps.rb', line 29
alias find_app_installations list_app_installations
#find_installation_repositories_for_user(installation, options = {}) ⇒ Sawyer::Resource
List repositories accessible to the user for an installation
# File 'lib/octokit/client/apps.rb', line 155
def find_installation_repositories_for_user(installation, = {}) paginate("user/installations/#{installation}/repositories", ) do |data, last_response| data.repositories.concat last_response.data.repositories end end
#find_installations(options = {})
Alias for #list_app_installations.
# File 'lib/octokit/client/apps.rb', line 28
alias find_installations list_app_installations
#find_organization_installation(organization, options = {}) ⇒ Sawyer::Resource
Enables an app to find the organization's installation information.
# File 'lib/octokit/client/apps.rb', line 77
def find_organization_installation(organization, = {}) get "#{Organization.path(organization)}/installation", end
#find_repository_installation(repo, options = {}) ⇒ Sawyer::Resource
Enables an app to find the repository's installation information.
# File 'lib/octokit/client/apps.rb', line 89
def find_repository_installation(repo, = {}) get "#{Repository.path(repo)}/installation", end
#find_user_installation(user, options = {}) ⇒ Sawyer::Resource
Enables an app to find the user's installation information.
#find_user_installations(options = {})
Alias for #list_user_installations.
# File 'lib/octokit/client/apps.rb', line 43
alias find_user_installations list_user_installations
#installation(id, options = {}) ⇒ Sawyer::Resource
Get a single installation
# File 'lib/octokit/client/apps.rb', line 52
def installation(id, = {}) get "app/installations/#{id}", end
#list_app_hook_deliveries(options = {}) ⇒ Array
<Hash
>
Returns a list of webhook deliveries for the webhook configured for a GitHub App.
# File 'lib/octokit/client/apps.rb', line 180
def list_app_hook_deliveries( = {}) paginate('app/hook/deliveries', ) do |data, last_response| data.concat last_response.data end end
#list_app_installation_repositories(options = {}) ⇒ Sawyer::Resource
Also known as: #list_installation_repos
List repositories that are accessible to the authenticated installation
# File 'lib/octokit/client/apps.rb', line 112
def list_app_installation_repositories( = {}) paginate('installation/repositories', ) do |data, last_response| data.repositories.concat last_response.data.repositories end end
#list_app_installations(options = {}) ⇒ Array
<Sawyer::Resource
>
Also known as: #find_installations, #find_app_installations
List all installations that belong to an App
# File 'lib/octokit/client/apps.rb', line 25
def list_app_installations( = {}) paginate 'app/installations', end
#list_installation_repos(options = {})
Alias for #list_app_installation_repositories.
# File 'lib/octokit/client/apps.rb', line 117
alias list_installation_repos list_app_installation_repositories
#list_user_installations(options = {}) ⇒ Sawyer::Resource
Also known as: #find_user_installations
List all installations that are accessible to the authenticated user
# File 'lib/octokit/client/apps.rb', line 38
def list_user_installations( = {}) paginate('user/installations', ) do |data, last_response| data.installations.concat last_response.data.installations end end
#remove_repo_from_installation(installation, repo, options = {})
Alias for #remove_repository_from_app_installation.
# File 'lib/octokit/client/apps.rb', line 145
alias remove_repo_from_installation remove_repository_from_app_installation
#remove_repository_from_app_installation(installation, repo, options = {}) ⇒ Boolean
Also known as: #remove_repo_from_installation
Remove a single repository to an installation
# File 'lib/octokit/client/apps.rb', line 142
def remove_repository_from_app_installation(installation, repo, = {}) boolean_from_response :delete, "user/installations/#{installation}/repositories/#{repo}", end