aboutsummaryrefslogtreecommitdiff
path: root/service/auth.go
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2019-12-14 20:19:02 +0000
committerr <r@freesoftwareextremist.com>2019-12-14 20:19:02 +0000
commite129ea922e6cbe8966f9a9f0b1c6c94401516c61 (patch)
tree35be3bc003b787db5898ac1ba8aacca3f944105e /service/auth.go
parentea66bd539dec12ef2846c23e505593f9f9d9fac3 (diff)
downloadbloat-e129ea922e6cbe8966f9a9f0b1c6c94401516c61.tar.gz
bloat-e129ea922e6cbe8966f9a9f0b1c6c94401516c61.zip
Add attachments support
Diffstat (limited to 'service/auth.go')
-rw-r--r--service/auth.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/service/auth.go b/service/auth.go
index 5ee2001..98012af 100644
--- a/service/auth.go
+++ b/service/auth.go
@@ -5,6 +5,7 @@ import (
"errors"
"io"
"mastodon"
+ "mime/multipart"
"web/model"
)
@@ -142,10 +143,10 @@ func (s *authService) UnRetweet(ctx context.Context, client io.Writer, c *mastod
return s.Service.UnRetweet(ctx, client, c, id)
}
-func (s *authService) PostTweet(ctx context.Context, client io.Writer, c *mastodon.Client, content string, replyToID string) (id string, err error) {
+func (s *authService) PostTweet(ctx context.Context, client io.Writer, c *mastodon.Client, content string, replyToID string, files []*multipart.FileHeader) (id string, err error) {
c, err = s.getClient(ctx)
if err != nil {
return
}
- return s.Service.PostTweet(ctx, client, c, content, replyToID)
+ return s.Service.PostTweet(ctx, client, c, content, replyToID, files)
}