File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,14 @@ type OAuthApp struct {
110110
111111// AppManifest represents a GitHub App manifest, used for preconfiguring
112112// GitHub App configuration.
113+ // c.f. https://docs.github.com/en/apps/sharing-github-apps/registering-a-github-app-from-a-manifest
113114type AppManifest struct {
114115 // The name of the GitHub App.
115116 Name * string `json:"name,omitempty"`
116117 //Required. The homepage of your GitHub App.
117118 URL * string `json:"url,omitempty"`
119+ // The full URL(s) of the endpoint(s) to authenticate users via the GitHub App (Max: 10).
120+ CallbackURLs []string `json:"callback_urls,omitempty"`
118121 // Required. The configuration of the GitHub App's webhook.
119122 HookAttributes map [string ]string `json:"hook_attributes,omitempty"`
120123 // The full URL to redirect to after the person installs the GitHub App.
You can’t perform that action at this time.
0 commit comments