Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions handlers/ticket.go
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ func (th *ticketHandler) ProcessTicketReview(w http.ResponseWriter, r *http.Requ
json.NewEncoder(w).Encode(createdTicket)
}

// GetTicketsByGroup godoc
// GetTicketsByPhaseUUID godoc
//
// @Summary Get Tickets by Phase UUID
// @Description Get tickets by phase UUID
Expand Down Expand Up @@ -1111,7 +1111,7 @@ func (th *ticketHandler) CreateWorkspaceDraftTicket(w http.ResponseWriter, r *ht
json.NewEncoder(w).Encode(createdTicket)
}

// GetWorkspaceDraftTickets godoc
// GetWorkspaceDraftTicket godoc
//
// @Summary Get Workspace Draft Ticket
// @Description Get a draft ticket for a workspace by its UUID
Expand Down
2 changes: 1 addition & 1 deletion handlers/tribes.go
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ func GenerateV1Invoice(w http.ResponseWriter, r *http.Request) (db.InvoiceRespon
return invoiceRes, db.InvoiceError{Success: true}
}

// GenerateInvoice godoc
// GenerateV2Invoice godoc
//
// @Summary Generate an invoice
// @Description Generate an invoice for a tribe
Expand Down
2 changes: 1 addition & 1 deletion handlers/workspaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ func GetWorkspaceUsersCount(w http.ResponseWriter, r *http.Request) {
json.NewEncoder(w).Encode(count)
}

// DeleteWorkspace godoc
// DeleteWorkspaceUser godoc
//
// @Summary Delete Workspace User
// @Description Delete a user from a workspace
Expand Down
Loading