summaryrefslogtreecommitdiffstats
path: root/api4
diff options
context:
space:
mode:
Diffstat (limited to 'api4')
-rw-r--r--api4/context.go2
-rw-r--r--api4/team_test.go13
2 files changed, 11 insertions, 4 deletions
diff --git a/api4/context.go b/api4/context.go
index 06eee6715..61c318266 100644
--- a/api4/context.go
+++ b/api4/context.go
@@ -355,7 +355,7 @@ func (c *Context) RequireInviteId() *Context {
return c
}
- if len(c.Params.InviteId) != 26 {
+ if len(c.Params.InviteId) == 0 {
c.SetInvalidUrlParam("invite_id")
}
return c
diff --git a/api4/team_test.go b/api4/team_test.go
index 440b2feb2..421428afa 100644
--- a/api4/team_test.go
+++ b/api4/team_test.go
@@ -12,10 +12,10 @@ import (
"strings"
"testing"
+ "encoding/base64"
"github.com/mattermost/platform/app"
"github.com/mattermost/platform/model"
"github.com/mattermost/platform/utils"
- "encoding/base64"
)
func TestCreateTeam(t *testing.T) {
@@ -1475,7 +1475,7 @@ func TestInviteUsersToTeam(t *testing.T) {
}
func TestGetTeamInviteInfo(t *testing.T) {
- th := Setup().InitBasic()
+ th := Setup().InitBasic().InitSystemAdmin()
defer TearDown()
Client := th.Client
team := th.BasicTeam
@@ -1491,6 +1491,13 @@ func TestGetTeamInviteInfo(t *testing.T) {
t.Fatal("should be empty")
}
+ team.InviteId = "12345678901234567890123456789012"
+ team, resp = th.SystemAdminClient.UpdateTeam(team)
+ CheckNoError(t, resp)
+
+ team, resp = Client.GetTeamInviteInfo(team.InviteId)
+ CheckNoError(t, resp)
+
_, resp = Client.GetTeamInviteInfo("junk")
- CheckBadRequestStatus(t, resp)
+ CheckNotFoundStatus(t, resp)
}