Versions in this module Expand all Collapse all v0 v0.0.21 Jun 6, 2025 v0.0.20 Jun 6, 2025 v0.0.19 Jun 5, 2025 v0.0.18 Jun 5, 2025 v0.0.17 Jun 5, 2025 v0.0.16 Jun 5, 2025 v0.0.15 Jun 5, 2025 v0.0.14 Jun 4, 2025 Changes in this version + func RegisterHandlers(server *server.Server, grp *huma.Group) + type GitHubAppCreateInput struct + Organization string + RedirectURL string + type GithubAdminOrganizationListInput struct + InstallationID int64 + type GithubAdminOrganizationListResponse struct + Body struct{ ... } + type GithubAdminRepositoryListResponse struct + Body struct{ ... } + type GithubAppAPIResponse struct + CreatedAt time.Time + CreatedBy uuid.UUID + ID int64 + Installations []*GithubInstallationAPIResponse + Name string + UUID uuid.UUID + UpdatedAt time.Time + type GithubAppCreateResponse struct + Body struct{ ... } + type GithubAppGetInput struct + UUID uuid.UUID + type GithubAppGetResponse struct + Body struct{ ... } + type GithubAppInstallationListResponse struct + Body struct{ ... } + type GithubAppListInput struct + WithInstallations bool + type GithubAppListResponse struct + Body struct{ ... } + type GithubInstallationAPIResponse struct + AccountID int64 + AccountLogin string + AccountType githubinstallation.AccountType + AccountURL string + Active bool + CreatedAt time.Time + Events []string + GithubAppID int64 + ID int64 + Permissions schema.GithubInstallationPermissions + RepositorySelection githubinstallation.RepositorySelection + Suspended bool + UpdatedAt time.Time + type GithubRepositoryDetailInput struct + InstallationID int64 + Owner string + RepoName string + type GithubRepositoryDetailResponse struct + Body struct{ ... } + type HandlerGroup struct + func (self *HandlerGroup) HandleGetGithubApp(ctx context.Context, input *GithubAppGetInput) (*GithubAppGetResponse, error) + func (self *HandlerGroup) HandleGetGithubRepositoryDetail(ctx context.Context, input *GithubRepositoryDetailInput) (*GithubRepositoryDetailResponse, error) + func (self *HandlerGroup) HandleGithubAppCreate(ctx context.Context, input *GitHubAppCreateInput) (*GithubAppCreateResponse, error) + func (self *HandlerGroup) HandleListGithubAdminOrganizations(ctx context.Context, input *GithubAdminOrganizationListInput) (*GithubAdminOrganizationListResponse, error) + func (self *HandlerGroup) HandleListGithubAdminRepositories(ctx context.Context, input *server.BaseAuthInput) (*GithubAdminRepositoryListResponse, error) + func (self *HandlerGroup) HandleListGithubAppInstallations(ctx context.Context, input *server.BaseAuthInput) (*GithubAppInstallationListResponse, error) + func (self *HandlerGroup) HandleListGithubApps(ctx context.Context, input *GithubAppListInput) (*GithubAppListResponse, error)