aboutsummaryrefslogtreecommitdiff
path: root/service/auth.go
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2019-12-22 18:10:42 +0000
committerr <r@freesoftwareextremist.com>2019-12-22 18:10:42 +0000
commit08cc2a6adeb591c687d68c22bac9bc5b5f9f62b6 (patch)
treefb4a475f9328b2d27f19c8e63ad2b56f7eb9980b /service/auth.go
parent967a9c954e9709d57e860b8ea5c4e7f495402848 (diff)
downloadbloat-08cc2a6adeb591c687d68c22bac9bc5b5f9f62b6.tar.gz
bloat-08cc2a6adeb591c687d68c22bac9bc5b5f9f62b6.zip
Add emojis page
Diffstat (limited to 'service/auth.go')
-rw-r--r--service/auth.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/service/auth.go b/service/auth.go
index 1b2700c..57ef3d0 100644
--- a/service/auth.go
+++ b/service/auth.go
@@ -125,6 +125,14 @@ func (s *authService) ServeAboutPage(ctx context.Context, client io.Writer, c *m
return s.Service.ServeAboutPage(ctx, client, c)
}
+func (s *authService) ServeEmojiPage(ctx context.Context, client io.Writer, c *model.Client) (err error) {
+ c, err = s.getClient(ctx)
+ if err != nil {
+ return
+ }
+ return s.Service.ServeEmojiPage(ctx, client, c)
+}
+
func (s *authService) Like(ctx context.Context, client io.Writer, c *model.Client, id string) (err error) {
c, err = s.getClient(ctx)
if err != nil {