Documentation ¶
Index ¶
- type CreateNewCardReq
- type CreateNewColumnReq
- type CreateNewTeamReq
- type CreateProjectReq
- type CreateUserReq
- type DeleteCardReq
- type DeleteColumn
- type GetAllProjectFromTeamIDResp
- type GetAllTeamByUserIDResp
- type GetCardByIDResp
- type GetProjectDetailsResp
- type GetRecentCreatedProjectByUserIDResp
- type GetTeamByIDResp
- type GetUserNameResp
- type MoveCardColReq
- type ReorderCard
- type ReorderCardOneColumnReq
- type Resp
- type RespError
- type UpdateCardInfoReq
- type UpdateColumnIndex
- type UpdateColumnReq
- type UpdateTeamMemberReq
- type UpdateUserReq
- type UserLoginReq
- type UserLoginResp
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateNewCardReq ¶
type CreateNewColumnReq ¶
type CreateNewColumnReq struct {
ColumnName string `json:"columnName"`
}
type CreateNewTeamReq ¶
type CreateNewTeamReq struct {
TeamName string `json:"teamName"`
}
type CreateProjectReq ¶
type CreateProjectReq struct {
ProjectName string `json:"projectName"`
}
type CreateUserReq ¶
type DeleteCardReq ¶
type DeleteCardReq struct {
CardID uint32 `json:"cardID"`
}
type DeleteColumn ¶
type DeleteColumn struct {
ColumnID uint32 `json:"columnID"`
}
type GetAllProjectFromTeamIDResp ¶
type GetAllProjectFromTeamIDResp struct { RespError Projects []*usrmanrpc.Project `json:"projects"` }
func (*GetAllProjectFromTeamIDResp) SetData ¶
func (r *GetAllProjectFromTeamIDResp) SetData(prjs []*usrmanrpc.Project)
type GetAllTeamByUserIDResp ¶
func (*GetAllTeamByUserIDResp) SetData ¶
func (r *GetAllTeamByUserIDResp) SetData(teams []*usrmanrpc.Team)
type GetCardByIDResp ¶
func (*GetCardByIDResp) SetData ¶
func (r *GetCardByIDResp) SetData(card *ccmanrpc.Card)
type GetProjectDetailsResp ¶
type GetRecentCreatedProjectByUserIDResp ¶
type GetRecentCreatedProjectByUserIDResp struct { RespError Projects []*usrmanrpc.Project `json:"projects"` }
func (*GetRecentCreatedProjectByUserIDResp) SetData ¶
func (r *GetRecentCreatedProjectByUserIDResp) SetData(prjs []*usrmanrpc.Project)
type GetTeamByIDResp ¶
func (*GetTeamByIDResp) SetData ¶
func (r *GetTeamByIDResp) SetData(team *usrmanrpc.Team)
type GetUserNameResp ¶
func (*GetUserNameResp) SetData ¶
func (r *GetUserNameResp) SetData(users []*usrmanrpc.User)
type MoveCardColReq ¶
type ReorderCard ¶
type ReorderCard struct { CardID uint32 `json:"cardID"` AboveIdx uint32 `json:"aboveOfIdx"` ColumnID uint32 `json:"columnID"` }
ReorderCard if move in same col, colID = 0
type ReorderCardOneColumnReq ¶
type RespError ¶
type RespError struct { Error struct { Code int `json:"code"` Message string `json:"message"` } `json:"error"` }
func (*RespError) SetMessage ¶
type UpdateCardInfoReq ¶
type UpdateColumnIndex ¶
type UpdateColumnReq ¶
type UpdateTeamMemberReq ¶
type UpdateUserReq ¶
type UserLoginReq ¶
type UserLoginResp ¶
func (*UserLoginResp) SetToken ¶
func (r *UserLoginResp) SetToken(token string)
Source Files ¶
Click to show internal directories.
Click to hide internal directories.