aboutsummaryrefslogtreecommitdiff
path: root/urls
diff options
context:
space:
mode:
authorJulio Capote <jcapote@gmail.com>2023-01-02 18:27:18 +0000
committerJulio Capote <jcapote@gmail.com>2023-01-02 18:27:18 +0000
commit4f42b00ec18cfdf3f97527a6fe91babc03f118aa (patch)
tree2fdd7a5fe227846a1b1f3015dcd25cdbdef68d70 /urls
parent9027aba0621018caf177611d9105213645efe491 (diff)
downloadcommunique-4f42b00ec18cfdf3f97527a6fe91babc03f118aa.tar.gz
return ordered collection for outbox instead of page
Diffstat (limited to 'urls')
-rw-r--r--urls/urls.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/urls/urls.go b/urls/urls.go
index 65aa042..d2bfb4a 100644
--- a/urls/urls.go
+++ b/urls/urls.go
@@ -44,14 +44,3 @@ func UrlActivity(name, domain, id string) (*url.URL, error) {
func UrlNote(name, domain, id string) (*url.URL, error) {
return linkTo("note", domain, "actors", name, "activity", id, "note")
}
-
-func UrlOutboxPage(name, domain string) (*url.URL, error) {
- u, err := UrlOutbox(name, domain)
- if err != nil {
- return nil, fmt.Errorf("could not build outbox page url: %w", err)
- }
- q := u.Query()
- q.Set("page", "true")
- u.RawQuery = q.Encode()
- return u, nil
-}