mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-22 13:47:30 -06:00
add emoji + tags
This commit is contained in:
parent
23e2c4a567
commit
bf93305931
6 changed files with 129 additions and 25 deletions
|
|
@ -51,6 +51,12 @@ type Status struct {
|
|||
// What is the activitystreams type of this status? See: https://www.w3.org/TR/activitystreams-vocabulary/#object-types
|
||||
// Will probably almost always be Note but who knows!.
|
||||
ActivityStreamsType ActivityStreamsObject
|
||||
// Mentions created in this status -- will not be put in the database along with the status
|
||||
Mentions []*Mention `pg:"-"`
|
||||
// Hashtags used in this status -- will not be put in the database along with the status
|
||||
Tags []*Tag `pg:"-"`
|
||||
// Emojis used in this status -- will not be put in the database along with the status
|
||||
Emojis []*Emoji `pg:"-"`
|
||||
}
|
||||
|
||||
// Visibility represents the visibility granularity of a status.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue