activitypub.go 414 B

12345678910111213
  1. package data
  2. // GetFederatedInboxMap is a mapping between account names and their outbox.
  3. func GetFederatedInboxMap() map[string]string {
  4. return map[string]string{
  5. GetDefaultFederationUsername(): GetDefaultFederationUsername(),
  6. }
  7. }
  8. // GetDefaultFederationUsername will return the username used for sending federation activities.
  9. func GetDefaultFederationUsername() string {
  10. return GetFederationUsername()
  11. }