This commit is contained in:
BoHung Chiu 2023-01-16 17:31:46 +08:00
parent 2f36306057
commit 10c013046d
2 changed files with 15 additions and 7 deletions

View File

@ -780,11 +780,6 @@ class SeminarsController < ApplicationController
mail_sentdate:Time.current,
mail_subject: email_set[0].title[I18n.locale],
template_data:{'seminar_id'=>seminar_id,'locale'=>I18n.locale,'extra_text'=> extra_text})
end
begin
mail.deliver
rescue => e
puts ["email can't deliver",e]
end
end
end
end

View File

@ -6,7 +6,10 @@ Rails.application.routes.draw do
Thread.new do
if Page.fields.include?('all_pageids')
s = Site.first
if s.respond_to?(:tmp_flags) && !(s.tmp_flags.include?('fix_sr'))
update_flag = s.respond_to?(:tmp_flags)
need_update1 = update_flag && !(s.tmp_flags.include?('fix_sr'))
need_update2 = !update_flag || !(s.tmp_flags.include?('sm1'))
if need_update1
Page.where(:bind_model=>"SeminarMain",:all_pageids=>nil).each do |p|
p.save
end
@ -14,6 +17,16 @@ Rails.application.routes.draw do
tmp_flags << 'fix_sr'
Site.update_all(:tmp_flags => tmp_flags)
end
if need_update2
SeminarMain.where(:enable_recaptcha=>nil).each do |seminar_main|
seminar_main.update_enable_recaptcha
end
if update_flag
s = Site.first
s.tmp_flags << 'sm1'
s.save
end
end
end
end
locales = Site.first.in_use_locales rescue I18n.available_locales