PLT-6759 Show deactivated users in GMs (#6703)

* Show deactivated users in GMs

* Fix runtime error when DMing deactivated user
Этот коммит содержится в:
Joram Wilander
2017-06-22 06:36:46 -04:00
коммит произвёл George Goldberg
родитель ac4e9909fa
Коммит 3f1fca9463
6 изменённых файлов: 52 добавлений и 11 удалений

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

@@ -63,7 +63,10 @@ func SendNotifications(post *model.Post, team *model.Team, channel *model.Channe
otherUserId = userIds[0]
}
mentionedUserIds[otherUserId] = true
if _, ok := profileMap[otherUserId]; ok {
mentionedUserIds[otherUserId] = true
}
if post.Props["from_webhook"] == "true" {
mentionedUserIds[post.UserId] = true
}

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

@@ -14,14 +14,14 @@ func TestSendNotifications(t *testing.T) {
AddUserToChannel(th.BasicUser2, th.BasicChannel)
post1, postErr := CreatePost(&model.Post{
post1, err := CreatePost(&model.Post{
UserId: th.BasicUser.Id,
ChannelId: th.BasicChannel.Id,
Message: "@" + th.BasicUser2.Username,
}, th.BasicTeam.Id, true)
if postErr != nil {
t.Fatal(postErr)
if err != nil {
t.Fatal(err)
}
mentions, err := SendNotifications(post1, th.BasicTeam, th.BasicChannel, th.BasicUser)
@@ -34,6 +34,44 @@ func TestSendNotifications(t *testing.T) {
t.Log(mentions)
t.Fatal("user should have been mentioned")
}
dm, err := CreateDirectChannel(th.BasicUser.Id, th.BasicUser2.Id)
if err != nil {
t.Fatal(err)
}
post2, err := CreatePost(&model.Post{
UserId: th.BasicUser.Id,
ChannelId: dm.Id,
Message: "dm message",
}, th.BasicTeam.Id, true)
if err != nil {
t.Fatal(err)
}
_, err = SendNotifications(post2, th.BasicTeam, dm, th.BasicUser)
if err != nil {
t.Fatal(err)
}
UpdateActive(th.BasicUser2, false)
InvalidateAllCaches()
post3, err := CreatePost(&model.Post{
UserId: th.BasicUser.Id,
ChannelId: dm.Id,
Message: "dm message",
}, th.BasicTeam.Id, true)
if err != nil {
t.Fatal(err)
}
_, err = SendNotifications(post3, th.BasicTeam, dm, th.BasicUser)
if err != nil {
t.Fatal(err)
}
}
func TestGetExplicitMentions(t *testing.T) {