Skip to content

Commit

Permalink
fix seed (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
x86taka authored Mar 2, 2023
1 parent 3d2d922 commit 31b4947
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/seed/seed.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ type AdminUserGroupAndUserSeederConfig struct {
BastionPassword string `yaml:"bastionPassword"`
BastionHost string `yaml:"bastionHost"`
BastionPort int `yaml:"bastionPort"`
TeamID string `yaml:"teamId"`
}

func (s *seeder) adminUserGroupAndUserSeeder(config AdminUserGroupAndUserSeederConfig) error {
Expand All @@ -92,6 +93,7 @@ func (s *seeder) adminUserGroupAndUserSeeder(config AdminUserGroupAndUserSeederC
config.Organization,
config.InvitationCode,
true,
config.TeamID,
)
if err != nil {
return err
Expand Down

0 comments on commit 31b4947

Please sign in to comment.