mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-31 22:02:25 -05:00
Remote instances are now dereferenced when they post to an inbox on a GtS instance.
Dereferencing will be done first by checking the /api/v1/instance endpoint of an instance.
If that doesn't work, /.well-known/nodeinfo will be checked.
If that doesn't work, only a minimal representation of the instance will be stored.
A new field was added to the Instance database model. To create it:
alter table instances add column contact_account_username text;
|
||
|---|---|---|
| .. | ||
| account.go | ||
| activitystreams.go | ||
| application.go | ||
| block.go | ||
| domainblock.go | ||
| emaildomainblock.go | ||
| emoji.go | ||
| follow.go | ||
| followrequest.go | ||
| instance.go | ||
| mediaattachment.go | ||
| mention.go | ||
| messages.go | ||
| notification.go | ||
| poll.go | ||
| relationship.go | ||
| status.go | ||
| statusbookmark.go | ||
| statusfave.go | ||
| statusmute.go | ||
| stream.go | ||
| tag.go | ||
| user.go | ||