Compare commits
No commits in common. "651f6cb29cb65db86bc6f6a5a95d3df7dcf8f14a" and "3627bdc4b215d6412fb21b4f7d6532571d9052c9" have entirely different histories.
651f6cb29c
...
3627bdc4b2
|
@ -8,7 +8,7 @@ Rails.application.routes.draw do
|
|||
s = Site.first
|
||||
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?('smer1'))
|
||||
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
|
||||
|
@ -23,7 +23,7 @@ Rails.application.routes.draw do
|
|||
end
|
||||
if update_flag
|
||||
s = Site.first
|
||||
s.tmp_flags << 'smer1'
|
||||
s.tmp_flags << 'sm1'
|
||||
s.save
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue