dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 958ebd84a63b7b7db068a04eccfd204b4d00967c
parent 7a0e811a93878b73d100016f94d598144b470500
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Thu, 12 Jan 2023 15:25:07 -0800

add doc

Diffstat:
Mpkg/database/tableChatRooms.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/database/tableChatRooms.go b/pkg/database/tableChatRooms.go @@ -130,7 +130,7 @@ func GetChatRoomByName(roomName string) (out ChatRoom, err error) { type ChatRoomAug struct { ChatRoom - OwnerUser *User `gorm:"embedded"` + OwnerUser *User `gorm:"embedded"` // https://gorm.io/docs/models.html#Embedded-Struct IsUnread bool }