aboutsummaryrefslogtreecommitdiff
path: root/service/auth.go
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2019-12-25 04:30:21 +0000
committerr <r@freesoftwareextremist.com>2019-12-25 04:30:21 +0000
commitf6f7b27e40f97ffe88323be01bea1d04ca39d6b0 (patch)
tree2aad7592cc20bc9d1d59e5e9da5d83b1d15774cc /service/auth.go
parent51bdb20402abc08102e83a234bb4f6720c5a1166 (diff)
downloadbloat-f6f7b27e40f97ffe88323be01bea1d04ca39d6b0.tar.gz
bloat-f6f7b27e40f97ffe88323be01bea1d04ca39d6b0.zip
Add local and twkn timelines
Diffstat (limited to 'service/auth.go')
-rw-r--r--service/auth.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/auth.go b/service/auth.go
index 57ef3d0..cadb050 100644
--- a/service/auth.go
+++ b/service/auth.go
@@ -85,12 +85,12 @@ func (s *authService) ServeSigninPage(ctx context.Context, client io.Writer) (er
}
func (s *authService) ServeTimelinePage(ctx context.Context, client io.Writer,
- c *model.Client, maxID string, sinceID string, minID string) (err error) {
+ c *model.Client, timelineType string, maxID string, sinceID string, minID string) (err error) {
c, err = s.getClient(ctx)
if err != nil {
return
}
- return s.Service.ServeTimelinePage(ctx, client, c, maxID, sinceID, minID)
+ return s.Service.ServeTimelinePage(ctx, client, c, timelineType, maxID, sinceID, minID)
}
func (s *authService) ServeThreadPage(ctx context.Context, client io.Writer, c *model.Client, id string, reply bool) (err error) {