summaryrefslogtreecommitdiffstats
path: root/app/plugin/api.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/plugin/api.go')
-rw-r--r--app/plugin/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/plugin/api.go b/app/plugin/api.go
index ceea51969..41838b818 100644
--- a/app/plugin/api.go
+++ b/app/plugin/api.go
@@ -30,7 +30,7 @@ type API interface {
GetDirectChannel(userId1, userId2 string) (*model.Channel, *model.AppError)
// Creates a post
- CreatePost(post *model.Post, teamId string) (*model.Post, *model.AppError)
+ CreatePost(post *model.Post) (*model.Post, *model.AppError)
// Returns a localized string. If a request is given, its headers will be used to pick a locale.
I18n(id string, r *http.Request) string