summaryrefslogtreecommitdiffstats
path: root/app/auto_teams.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/auto_teams.go')
-rw-r--r--app/auto_teams.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/app/auto_teams.go b/app/auto_teams.go
index 9dce5bd15..e322e8c66 100644
--- a/app/auto_teams.go
+++ b/app/auto_teams.go
@@ -14,7 +14,7 @@ type TeamEnvironment struct {
}
type AutoTeamCreator struct {
- client *model.Client
+ client *model.Client4
Fuzzy bool
NameLength utils.Range
NameCharset string
@@ -24,7 +24,7 @@ type AutoTeamCreator struct {
EmailCharset string
}
-func NewAutoTeamCreator(client *model.Client) *AutoTeamCreator {
+func NewAutoTeamCreator(client *model.Client4) *AutoTeamCreator {
return &AutoTeamCreator{
client: client,
Fuzzy: false,
@@ -57,11 +57,10 @@ func (cfg *AutoTeamCreator) createRandomTeam() (*model.Team, bool) {
Type: model.TEAM_OPEN,
}
- result, err := cfg.client.CreateTeam(team)
+ createdTeam, err := cfg.client.CreateTeam(team)
if err != nil {
return nil, false
}
- createdTeam := result.Data.(*model.Team)
return createdTeam, true
}