teams_handler

package
v0.0.21 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 6, 2025 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterHandlers

func RegisterHandlers(server *server.Server, grp *huma.Group)

Types

type GetTeamInput

type GetTeamInput struct {
	server.BaseAuthInput
	TeamID uuid.UUID `query:"team_id" description:"The ID of the team to retrieve" required:"true"`
}

Get by ID

type GetTeamResponse

type GetTeamResponse struct {
	Body struct {
		Data *models.TeamResponse `json:"data" nullable:"false"`
	}
}

type HandlerGroup

type HandlerGroup struct {
	// contains filtered or unexported fields
}

func (*HandlerGroup) GetTeam

func (self *HandlerGroup) GetTeam(ctx context.Context, input *GetTeamInput) (*GetTeamResponse, error)

GetTeam handles GET /teams/get

func (*HandlerGroup) ListTeams

func (self *HandlerGroup) ListTeams(ctx context.Context, input *server.BaseAuthInput) (*TeamResponse, error)

ListTeams handles GET /teams

func (*HandlerGroup) UpdateTeam

func (self *HandlerGroup) UpdateTeam(ctx context.Context, input *UpdateTeamInput) (*UpdateTeamResponse, error)

UpdateTeam handles PUT /team/{team_id}

type TeamResponse

type TeamResponse struct {
	Body struct {
		Data []*models.TeamResponse `json:"data" nullable:"false"`
	}
}

type UpdateTeamInput

type UpdateTeamInput struct {
	server.BaseAuthInput
	Body struct {
		TeamID      uuid.UUID `json:"team_id" required:"true"`
		Name        string    `json:"name"`
		Description *string   `json:"description"`
	}
}

type UpdateTeamResponse

type UpdateTeamResponse struct {
	Body struct {
		Data *models.TeamResponse `json:"data"`
	}
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL