mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 19:22:24 -05:00
[feature] Add requested_by to relationship model (#2672)
* [feature] Add `requested_by` to relationship model * whoops, missed some tests
This commit is contained in:
parent
65a273bc39
commit
8cafa6b74b
9 changed files with 121 additions and 2 deletions
|
|
@ -42,6 +42,8 @@ type Relationship struct {
|
|||
MutingNotifications bool `json:"muting_notifications"`
|
||||
// You have requested to follow this account, and the request is pending.
|
||||
Requested bool `json:"requested"`
|
||||
// This account has requested to follow you, and the request is pending.
|
||||
RequestedBy bool `json:"requested_by"`
|
||||
// You are blocking this account's domain.
|
||||
DomainBlocking bool `json:"domain_blocking"`
|
||||
// You are featuring this account on your profile.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue