diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-02 14:08:11 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-02 14:08:11 +0000 |
commit | 91a081a2bc16540c37ac76a719ab4dd79608ed5d (patch) | |
tree | 59769446d642ec591f7988ed19657fde9480a35c /views/actor.go | |
parent | 8d23867d2c6d3c6f0dd9681192b9b8642ceea254 (diff) | |
download | communique-91a081a2bc16540c37ac76a719ab4dd79608ed5d.tar.gz |
rename profile to actor
Diffstat (limited to '')
-rw-r--r-- | views/actor.go (renamed from views/profile.go) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/profile.go b/views/actor.go index 5b82b46..a91044a 100644 --- a/views/profile.go +++ b/views/actor.go @@ -7,7 +7,7 @@ import ( "github.com/go-fed/activity/streams" ) -func RenderProfile(name, domain string) (map[string]interface{}, error) { +func RenderActor(name, domain string) (map[string]interface{}, error) { inbox, err := urls.UrlInbox(name, domain) if err != nil { return nil, err |