Renamed FullName column in database to Nickname. Renamed all serverside references from FullName to Nickname.

Этот коммит содержится в:
hmhealey
2015-07-09 13:59:19 -04:00
родитель 1d7509493e
Коммит c09f1b9e4e
22 изменённых файлов: 168 добавлений и 158 удалений

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

@@ -138,7 +138,7 @@ func BenchmarkJoinChannel(b *testing.B) {
}
// Secondary test user to join channels created by primary test user
user := &model.User{TeamId: team.Id, Email: model.NewId() + "random@test.com", FullName: "That Guy", Password: "pwd"}
user := &model.User{TeamId: team.Id, Email: model.NewId() + "random@test.com", Nickname: "That Guy", Password: "pwd"}
user = Client.Must(Client.CreateUser(user, "")).Data.(*model.User)
store.Must(Srv.Store.User().VerifyEmail(user.Id))
Client.LoginByEmail(team.Domain, user.Email, "pwd")