16 lines
809 B
Ruby
16 lines
809 B
Ruby
namespace :broadcasts do
|
|
desc "Send Welcome Notifications once a day"
|
|
task send_welcome_notification_flow: :environment do
|
|
# In order to prevent new users from receiving multiple welcome notifications in a day,
|
|
# a feature_live_date is required. The script will only be effective after feature_live_date
|
|
# and will ultimately be superseded by 7.days.ago when it's larger than feature_live_date.
|
|
next unless SiteConfig.welcome_notifications_live_at
|
|
|
|
notifications_live_at = SiteConfig.welcome_notifications_live_at
|
|
week_ago = 7.days.ago
|
|
latest_date = notifications_live_at > week_ago ? notifications_live_at : week_ago
|
|
User.select(:id).where("created_at > ?", latest_date).find_each do |user|
|
|
Broadcasts::WelcomeNotification::Generator.call(user.id)
|
|
end
|
|
end
|
|
end
|