aboutsummaryrefslogtreecommitdiff
path: root/http/router.go
diff options
context:
space:
mode:
Diffstat (limited to 'http/router.go')
-rw-r--r--http/router.go8
1 files changed, 1 insertions, 7 deletions
diff --git a/http/router.go b/http/router.go
index d5d0de5..a0cc351 100644
--- a/http/router.go
+++ b/http/router.go
@@ -82,13 +82,7 @@ func (s *Router) Start(zapWriter io.Writer) {
// Actor Outbox
router.GET("/actors/:actor/outbox", func(c *gin.Context) {
actorParam := c.Param("actor")
- var resource map[string]interface{}
- var err error
- if c.Query("page") == "true" {
- resource, err = s.registry.OutboxCollection(actorParam)
- } else {
- resource, err = s.registry.Outbox(actorParam)
- }
+ resource, err := s.registry.OutboxCollection(actorParam)
render(c, resource, err)
})