update sampledata users passwords (#11769)

* update sampledata users passwords

* update makefile
Этот коммит содержится в:
Carlos Tadeu Panato Junior
2019-08-02 19:42:25 +02:00
коммит произвёл GitHub
родитель c74f685c76
Коммит f02f83a7df
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@@ -290,8 +290,8 @@ test-data: start-docker ## Add test data to the local instance.
@echo You may need to restart the Mattermost server before using the following
@echo ========================================================================
@echo Login with a system admin account username=sysadmin password=sysadmin
@echo Login with a regular account username=user-1 password=user-1
@echo Login with a system admin account username=sysadmin password=Sys@dmin-sample1
@echo Login with a regular account username=user-1 password=SampleUs@r-1
@echo ========================================================================
validate-go-version: ## Validates the installed version of go against Mattermost's minimum requirement.

Просмотреть файл

@@ -356,10 +356,10 @@ func sampleDataCmdF(command *cobra.Command, args []string) error {
}
func createUser(idx int, teamMemberships int, channelMemberships int, teamsAndChannels map[string][]string, profileImages []string, guest bool) app.LineImportData {
password := fmt.Sprintf("user-%d", idx)
password := fmt.Sprintf("SampleUs@r-%d", idx)
email := fmt.Sprintf("user-%d@sample.mattermost.com", idx)
if guest {
password = fmt.Sprintf("guest-%d", idx)
password = fmt.Sprintf("SampleGu@st-%d", idx)
email = fmt.Sprintf("guest-%d@sample.mattermost.com", idx)
}
firstName := fake.FirstName()
@@ -368,12 +368,12 @@ func createUser(idx int, teamMemberships int, channelMemberships int, teamsAndCh
if guest {
if idx == 0 {
username = "guest"
password = "guest"
password = "SampleGu@st1"
email = "guest@sample.mattermost.com"
}
} else if idx == 0 {
username = "sysadmin"
password = "sysadmin"
password = "Sys@dmin-sample1"
email = "sysadmin@sample.mattermost.com"
} else if idx == 1 {
username = "user-1"