mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 16:11:08 +08:00
FEATURE: automatically archive welcome messages for site_contact_user
This de-clutters the sent messages box for site_contact_user, making it again usable
This commit is contained in:
@ -4,22 +4,27 @@ require 'topic_subtype'
|
||||
|
||||
describe SystemMessage do
|
||||
|
||||
let!(:admin) { Fabricate(:admin) }
|
||||
|
||||
context 'send' do
|
||||
|
||||
let(:user) { Fabricate(:user) }
|
||||
let(:system_message) { SystemMessage.new(user) }
|
||||
let(:post) { system_message.create(:welcome_invite) }
|
||||
let(:topic) { post.topic }
|
||||
|
||||
it 'should create a post correctly' do
|
||||
|
||||
admin = Fabricate(:admin)
|
||||
user = Fabricate(:user)
|
||||
SiteSetting.site_contact_username = admin.username
|
||||
system_message = SystemMessage.new(user)
|
||||
post = system_message.create(:welcome_invite)
|
||||
topic = post.topic
|
||||
|
||||
expect(post).to be_present
|
||||
expect(post).to be_valid
|
||||
expect(topic).to be_private_message
|
||||
expect(topic).to be_valid
|
||||
expect(topic.subtype).to eq(TopicSubtype.system_message)
|
||||
expect(topic.allowed_users.include?(user)).to eq(true)
|
||||
expect(topic.allowed_users.include?(admin)).to eq(true)
|
||||
|
||||
expect(UserArchivedMessage.where(user_id: admin.id, topic_id: topic.id).length).to eq(1)
|
||||
end
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user