Export Inbox getter for remote actor

master
Michael Demetriou 2019-10-08 15:22:59 +03:00
parent 59ab751453
commit 76f9e14b93
1 changed files with 5 additions and 0 deletions

View File

@ -91,3 +91,8 @@ func get(iri string) (info map[string]interface{}, err error) {
return
}
// GetInbox returns the inbox url of the actor
func (ra RemoteActor) GetInbox() string {
return ra.inbox
}