license update, base controllers extends app controller
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
class BaseCrmController < ActionController::Base
|
||||
include LicenseVerification
|
||||
class BaseCrmController < ApplicationController
|
||||
layout "CRM"
|
||||
|
||||
#before_action :check_installation
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
class BaseInventoryController < ActionController::Base
|
||||
include LicenseVerification
|
||||
class BaseInventoryController < ApplicationController
|
||||
layout "inventory"
|
||||
|
||||
#before_action :check_installation
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
class BaseOqsController < ActionController::Base
|
||||
include LicenseVerification
|
||||
class BaseOqsController < ApplicationController
|
||||
layout "OQS"
|
||||
|
||||
#before_action :check_installation
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
class BaseOrigamiController < ActionController::Base
|
||||
include LicenseVerification
|
||||
class BaseOrigamiController < ApplicationController
|
||||
layout "origami"
|
||||
|
||||
# before_action :checkin_process
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
class BaseReportController < ActionController::Base
|
||||
include LicenseVerification
|
||||
class BaseReportController < ApplicationController
|
||||
layout "application"
|
||||
|
||||
#before_action :check_installation
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
class BaseWaiterController < ActionController::Base
|
||||
include LicenseVerification
|
||||
class BaseWaiterController < ApplicationController
|
||||
layout "waiter"
|
||||
|
||||
#before_action :check_installation
|
||||
protect_from_forgery with: :exception
|
||||
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user