Documentation
¶
Index ¶
- func AddMemberToTeam(w http.ResponseWriter, r *http.Request)
- func CreateMember(w http.ResponseWriter, r *http.Request)
- func CreateTeam(w http.ResponseWriter, r *http.Request)
- type AddMemberToTeamResponse
- type CreateDatabaseRequestBody
- type CreateMemberRequestBody
- type CreateMemberResponse
- type CreateTeamRequestBody
- type CreateTeamResponse
- type GithubInstallationRequestBody
- type TemporalHandler
- type UsersCountResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddMemberToTeam ¶
func AddMemberToTeam(w http.ResponseWriter, r *http.Request)
func CreateMember ¶
func CreateMember(w http.ResponseWriter, r *http.Request)
func CreateTeam ¶
func CreateTeam(w http.ResponseWriter, r *http.Request)
Types ¶
type AddMemberToTeamResponse ¶
type AddMemberToTeamResponse struct {
Message string `json:"message"`
}
type CreateMemberRequestBody ¶
type CreateMemberResponse ¶
type CreateMemberResponse struct {
MemberId int64 `json:"member_id"`
}
type CreateTeamRequestBody ¶
type CreateTeamRequestBody struct {
TeamName string `json:"teamName"`
}
type CreateTeamResponse ¶
type CreateTeamResponse struct {
TeamId int64 `json:"team_id"`
}
type TemporalHandler ¶
type TemporalHandler struct {
// contains filtered or unexported fields
}
func NewTemporalHandler ¶
func NewTemporalHandler(temporalClient client.Client, config onboarding.Config) *TemporalHandler
func (*TemporalHandler) CreateTenantDB ¶
func (th *TemporalHandler) CreateTenantDB(w http.ResponseWriter, r *http.Request)
func (*TemporalHandler) GithubInstallation ¶
func (th *TemporalHandler) GithubInstallation(w http.ResponseWriter, r *http.Request)
func (*TemporalHandler) UsersCount ¶
func (th *TemporalHandler) UsersCount(w http.ResponseWriter, r *http.Request)
type UsersCountResponse ¶
type UsersCountResponse struct {
Count int `json:"count"`
}
Click to show internal directories.
Click to hide internal directories.