[MM-14588] Don't mark the channel as read when adding a member (#10680)

* add flag whether to mark channel as viewed for the requesting user

* remove marking channel as viewed when adding user to a channel
Этот коммит содержится в:
Saturnino Abril
2019-04-27 07:22:12 +08:00
коммит произвёл GitHub
родитель d144cc0e65
Коммит 7e590c7efe
7 изменённых файлов: 10 добавлений и 14 удалений

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

@@ -257,7 +257,7 @@ func TestCreateDefaultMemberships(t *testing.T) {
}
// Ensure members are in channel
_, err = th.App.AddChannelMember(scientist1.Id, experimentsChannel, "", "", "")
_, err = th.App.AddChannelMember(scientist1.Id, experimentsChannel, "", "")
if err != nil {
t.Errorf("unable to add user to channel: %s", err.Error())
}
@@ -267,7 +267,7 @@ func TestCreateDefaultMemberships(t *testing.T) {
if err != nil {
t.Errorf("unable to add user to team: %s", err.Error())
}
_, err = th.App.AddChannelMember(singer1.Id, experimentsChannel, "", "", "")
_, err = th.App.AddChannelMember(singer1.Id, experimentsChannel, "", "")
if err != nil {
t.Errorf("unable to add user to channel: %s", err.Error())
}
@@ -341,7 +341,7 @@ func TestDeleteGroupMemberships(t *testing.T) {
_, err = th.App.AddTeamMember(th.BasicTeam.Id, userID)
require.Nil(t, err)
_, err = th.App.AddChannelMember(userID, th.BasicChannel, "", "", "")
_, err = th.App.AddChannelMember(userID, th.BasicChannel, "", "")
require.Nil(t, err)
}