mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 16:32:25 -05:00
[feature] User muting (#2960)
* User muting * Address review feedback * Rename uniqueness constraint on user_mutes to match convention * Remove unused account_id from where clause * Add UserMute to NewTestDB * Update test/envparsing.sh with new and fixed cache stuff * Address tobi's review comments * Make compiledUserMuteListEntry.expired consistent with UserMute.Expired * Make sure mute_expires_at is serialized as an explicit null for indefinite mutes --------- Co-authored-by: tobi <tobi.smethurst@protonmail.com>
This commit is contained in:
parent
b371c2db47
commit
5e2d4fdb19
47 changed files with 2346 additions and 53 deletions
|
|
@ -86,9 +86,6 @@ type Account struct {
|
|||
Fields []Field `json:"fields"`
|
||||
// Account has been suspended by our instance.
|
||||
Suspended bool `json:"suspended,omitempty"`
|
||||
// If this account has been muted, when will the mute expire (ISO 8601 Datetime).
|
||||
// example: 2021-07-30T09:20:25+00:00
|
||||
MuteExpiresAt string `json:"mute_expires_at,omitempty"`
|
||||
// Extra profile information. Shown only if the requester owns the account being requested.
|
||||
Source *Source `json:"source,omitempty"`
|
||||
// Filename of user-selected CSS theme to include when rendering this account's profile or statuses. Eg., `blurple-light.css`.
|
||||
|
|
@ -109,6 +106,17 @@ type Account struct {
|
|||
Moved *Account `json:"moved,omitempty"`
|
||||
}
|
||||
|
||||
// MutedAccount extends Account with a field used only by the muted user list.
|
||||
//
|
||||
// swagger:model mutedAccount
|
||||
type MutedAccount struct {
|
||||
Account
|
||||
// If this account has been muted, when will the mute expire (ISO 8601 Datetime).
|
||||
// If the mute is indefinite, this will be null.
|
||||
// example: 2021-07-30T09:20:25+00:00
|
||||
MuteExpiresAt *string `json:"mute_expires_at"`
|
||||
}
|
||||
|
||||
// AccountCreateRequest models account creation parameters.
|
||||
//
|
||||
// swagger:parameters accountCreate
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue