module BookingsyncApplication::Controllers::CommonBase

Public Class Methods

included(base) click to toggle source
# File lib/bookingsync_application/controllers/common_base.rb, line 4
def self.included(base)
  base.class_eval do
    force_ssl

    before_action :authenticate_account!
    after_action :allow_bookingsync_iframe
  end
end