mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 06:33:01 +00:00
2678f33157
- Add scope selection for for new post - Save new post scope in db - Copy scope on reply - Show scope icon on posts
13 lines
198 B
Go
13 lines
198 B
Go
package model
|
|
|
|
type PostContext struct {
|
|
DefaultVisibility string
|
|
ReplyContext *ReplyContext
|
|
}
|
|
|
|
type ReplyContext struct {
|
|
InReplyToID string
|
|
InReplyToName string
|
|
ReplyContent string
|
|
}
|