mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
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:
parent
62763f025c
commit
eb453d0f82
2 changed files with 11 additions and 1 deletions
|
@ -394,9 +394,14 @@ describe Email::Receiver do
|
|||
|
||||
expect(forwarded_post.raw).to match(/XoXo/)
|
||||
expect(last_post.raw).to match(/can you have a look at this email below/)
|
||||
|
||||
expect(last_post.post_type).to eq(Post.types[:regular])
|
||||
end
|
||||
|
||||
it "handles weirdly forwarded emails" do
|
||||
group.add(Fabricate(:user, email: "ba@bar.com"))
|
||||
group.save
|
||||
|
||||
SiteSetting.enable_forwarded_emails = true
|
||||
expect { process(:forwarded_email_2) }.to change(Topic, :count)
|
||||
|
||||
|
@ -407,6 +412,8 @@ describe Email::Receiver do
|
|||
|
||||
expect(forwarded_post.raw).to match(/XoXo/)
|
||||
expect(last_post.raw).to match(/can you have a look at this email below/)
|
||||
|
||||
expect(last_post.post_type).to eq(Post.types[:whisper])
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue