Use a single form for new posts and replies

This commit is contained in:
r 2019-12-21 08:36:44 +00:00
parent df875381d4
commit 39c57a6b65
7 changed files with 42 additions and 34 deletions

7
model/replyContext.go Normal file
View file

@ -0,0 +1,7 @@
package model
type ReplyContext struct {
InReplyToID string
InReplyToName string
ReplyContent string
}