Documentation
¶
Overview ¶
Package chat provides chat/discussions commands for GitScrum CLI
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCmdChat ¶
NewCmdChat creates the chat command group
func NewCmdChatChannels ¶
NewCmdChatChannels lists channels
func NewCmdChatSend ¶
NewCmdChatSend sends a message
Types ¶
type Channel ¶
type Channel struct {
UUID string `json:"uuid"`
Slug string `json:"slug"`
Name string `json:"name"`
Description string `json:"description"`
UnreadCount int `json:"unread_count"`
LastMessage struct {
Content string `json:"content"`
CreatedAt *api.DateResource `json:"created_at"`
User struct {
Name string `json:"name"`
} `json:"user"`
} `json:"last_message"`
}
Channel represents a chat channel
Click to show internal directories.
Click to hide internal directories.