Skip to content

Commit

Permalink
Merge pull request #655 from farhatahmad/2.2.0-hotfix
Browse files Browse the repository at this point in the history
GRN2-205: Fixed issue with https redirect
  • Loading branch information
antobinary committed Jul 17, 2019
2 parents 31b5e96 + 56be3a5 commit eb723be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ class ApplicationController < ActionController::Base
include SessionsHelper
include ThemingHelper

# Force SSL for loadbalancer configurations.
before_action :redirect_to_https

before_action :migration_error?
before_action :set_locale
before_action :check_admin_password
Expand All @@ -32,9 +35,6 @@ class ApplicationController < ActionController::Base
# Manually handle BigBlueButton errors
rescue_from BigBlueButton::BigBlueButtonException, with: :handle_bigbluebutton_error

# Force SSL for loadbalancer configurations.
before_action :redirect_to_https

protect_from_forgery with: :exception

MEETING_NAME_LIMIT = 90
Expand Down

0 comments on commit eb723be

Please sign in to comment.