FEATURE: Send an email notification when a post is approved. (#12665)

We now send an email when a queued post is approved, and we create a notification.
This commit is contained in:
Roman Rizzi
2021-04-12 12:08:23 -03:00
committed by GitHub
parent 045adb76f2
commit 958fbfb719
6 changed files with 51 additions and 3 deletions

View File

@@ -244,5 +244,14 @@ describe NotificationEmailer do
include_examples "enqueue_public"
end
context 'post_approved' do
let(:no_delay) { no_delay }
let(:type) { :post_approved }
let(:delay) { SiteSetting.email_time_window_mins.minutes }
let!(:notification) { create_notification(:post_approved) }
include_examples "enqueue_public"
end
end
end