PublishTitleChange broadcasts a title_change event for the given chat.
(chat database.Chat)
| 3104 | |
| 3105 | // PublishTitleChange broadcasts a title_change event for the given chat. |
| 3106 | func (p *Server) PublishTitleChange(chat database.Chat) { |
| 3107 | p.publishChatPubsubEvent(chat, codersdk.ChatWatchEventKindTitleChange, nil) |
| 3108 | } |
| 3109 | |
| 3110 | // ProposeChatTitle generates a title suggestion from the chat's visible messages without persisting it. |
| 3111 | func (p *Server) ProposeChatTitle( |
no test coverage detected