Skip to content

Commit 2386640

Browse files
fix: use a longer password for demo user creation to satisfy server minimums (#206)
Co-authored-by: Mattermost Build <build@mattermost.com>
1 parent e388d65 commit 2386640

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ func (p *Plugin) ensureDemoUser(configuration *configuration) (string, error) {
374374

375375
user, err = p.API.CreateUser(&model.User{
376376
Username: configuration.Username,
377-
Password: "Password_123",
377+
Password: "Password_1234567",
378378
Email: fmt.Sprintf("%s@example.com", configuration.Username),
379379
Nickname: "Demo Day",
380380
FirstName: "Demo",

server/dialog_samples.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ func getDialogStep3Summary(formData map[string]interface{}) model.Dialog {
949949
Placeholder: "I accept the Privacy Policy",
950950
HelpText: "You must accept our privacy policy to complete registration.",
951951
}},
952-
}
952+
}
953953
}
954954

955955
func getDialogWithMultiSelectElements() model.Dialog {

0 commit comments

Comments
 (0)