some more changes to the condition for mobile_on and api on
This commit is contained in:
parent
2d29493f1a
commit
f800ac63ed
|
@ -472,14 +472,12 @@ class ApplicationController < ActionController::Base
|
|||
|
||||
if (@site.mobile_on.eql?(true) && @site.mobile_api_openness_on.eql?(true))
|
||||
|
||||
session[:mobile_param] = if request.path.eql?(@mobile_path)
|
||||
'1'
|
||||
elsif (request.path.eql?(root_path) && mobile_device?)
|
||||
redirect_to mobile_path
|
||||
session[:mobile_param] = if request.path =~ /mobile/
|
||||
'1'
|
||||
elsif params[:mobile]
|
||||
params[:mobile]
|
||||
params[:mobile]
|
||||
else
|
||||
session[:mobile_param]
|
||||
session[:mobile_param]
|
||||
end
|
||||
|
||||
request.format = :mobile if mobile_device?
|
||||
|
@ -501,7 +499,6 @@ class ApplicationController < ActionController::Base
|
|||
|
||||
session[:mobile_param] = if (request.path.eql?(@mobile_path))
|
||||
'1'
|
||||
|
||||
elsif (request.path.eql?(@mobile_app_path) && mobile_device?)
|
||||
redirect_to root_path(mobile: 0)
|
||||
elsif params[:mobile]
|
||||
|
|
|
@ -416,19 +416,7 @@ Orbit::Application.routes.draw do
|
|||
end
|
||||
end
|
||||
|
||||
scope '/mobile/:app' do
|
||||
match '/announcement' => 'mobile#announcement', :as => 'mobile_announcement'
|
||||
match '/announcement_content/:id' => 'mobile#announcement_content', :as => 'mobile_announcement_content'
|
||||
match '/dialog_contact' => 'mobile#dialog_contact', :as => 'mobile_dialog_contact'
|
||||
match '/dialog_copyright' => 'mobile#dialog_copyright', :as => 'mobile_dialog_copyright'
|
||||
match '/dialog_language' => 'mobile#dialog_language', :as => 'mobile_dialog_language'
|
||||
match '/map' => 'mobile#map', :as => 'mobile_map'
|
||||
match '/page' => 'mobile#page', :as => 'mobile_page'
|
||||
match '/page_content/:id' => 'mobile#page_content', :as => 'mobile_page_content'
|
||||
root :to => 'mobile#index', :as => 'mobile'
|
||||
end
|
||||
|
||||
scope '/mobile' do
|
||||
scope '/mobile(/:app)' do
|
||||
match '/announcement' => 'mobile#announcement', :as => 'mobile_announcement'
|
||||
match '/announcement_content/:id' => 'mobile#announcement_content', :as => 'mobile_announcement_content'
|
||||
match '/dialog_contact' => 'mobile#dialog_contact', :as => 'mobile_dialog_contact'
|
||||
|
|
Loading…
Reference in New Issue