forked from External/greenlight
Merge pull request #655 from farhatahmad/2.2.0-hotfix
GRN2-205: Fixed issue with https redirect
This commit is contained in:
commit
eb723be3d3
|
@ -23,6 +23,9 @@ class ApplicationController < ActionController::Base
|
||||||
include SessionsHelper
|
include SessionsHelper
|
||||||
include ThemingHelper
|
include ThemingHelper
|
||||||
|
|
||||||
|
# Force SSL for loadbalancer configurations.
|
||||||
|
before_action :redirect_to_https
|
||||||
|
|
||||||
before_action :migration_error?
|
before_action :migration_error?
|
||||||
before_action :set_locale
|
before_action :set_locale
|
||||||
before_action :check_admin_password
|
before_action :check_admin_password
|
||||||
|
@ -32,9 +35,6 @@ class ApplicationController < ActionController::Base
|
||||||
# Manually handle BigBlueButton errors
|
# Manually handle BigBlueButton errors
|
||||||
rescue_from BigBlueButton::BigBlueButtonException, with: :handle_bigbluebutton_error
|
rescue_from BigBlueButton::BigBlueButtonException, with: :handle_bigbluebutton_error
|
||||||
|
|
||||||
# Force SSL for loadbalancer configurations.
|
|
||||||
before_action :redirect_to_https
|
|
||||||
|
|
||||||
protect_from_forgery with: :exception
|
protect_from_forgery with: :exception
|
||||||
|
|
||||||
MEETING_NAME_LIMIT = 90
|
MEETING_NAME_LIMIT = 90
|
||||||
|
|
Loading…
Reference in New Issue