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 {
110
110
111
111
// AppManifest represents a GitHub App manifest, used for preconfiguring
112
112
// GitHub App configuration.
113
+ // c.f. https://docs.github.com/en/apps/sharing-github-apps/registering-a-github-app-from-a-manifest
113
114
type AppManifest struct {
114
115
// The name of the GitHub App.
115
116
Name * string `json:"name,omitempty"`
116
117
//Required. The homepage of your GitHub App.
117
118
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"`
118
121
// Required. The configuration of the GitHub App's webhook.
119
122
HookAttributes map [string ]string `json:"hook_attributes,omitempty"`
120
123
// 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