the note in a FWed email should be a whisper only in PM and when the author is member of the group

This commit is contained in:
Régis Hanol
2016-12-01 18:43:56 +01:00
parent 62763f025c
commit eb453d0f82
2 changed files with 11 additions and 1 deletions

View File

@ -420,11 +420,14 @@ module Email
end
if post && post.topic && @before_embedded.present?
post_type = Post.types[:regular]
post_type = Post.types[:whisper] if post.topic.private_message? && group.usernames[user.username]
create_reply(user: user,
raw: @before_embedded,
post: post,
topic: post.topic,
post_type: Post.types[:whisper])
post_type: post_type)
end
true