Add Sidetiq webview to the Sidekiq monitoring panel Add rake task maintenance:queue_users_for_removal This basically just triggers an immediate run of the normal maintenance remove old users functionality that is normally (if enabled) scheduled to run once a day via sidetiq Add extra safety when checking for user removal due to inactivity. Now also user.last_seen will also be checked to make sure a user will not be removed in the event that the Devise rememember me login functionality has stopped the users remove_after timestamp from being removed. Add initializer for maintenance job. Add warning about mail being disabled if remove_old_users maintenance is enabled.
15 lines
495 B
Ruby
15 lines
495 B
Ruby
class Maintenance < ActionMailer::Base
|
|
default :from => AppConfig.mail.sender_address
|
|
|
|
def account_removal_warning(user)
|
|
@user = user
|
|
@login_url = new_user_session_path
|
|
@pod_url = AppConfig.environment.url
|
|
@after_days = AppConfig.settings.maintenance.remove_old_users.after_days.to_s
|
|
@remove_after = @user.remove_after
|
|
mail(:to => @user.email, :subject => I18n.t('notifier.remove_old_user.subject')) do |format|
|
|
format.text
|
|
format.html
|
|
end
|
|
end
|
|
end
|