update check user
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
class Settings::PromotionsController < ApplicationController
|
||||
load_and_authorize_resource except: [:create]
|
||||
before_action :set_promotion, only: [:show, :edit, :update, :destroy]
|
||||
before_action :check_user
|
||||
|
||||
# GET /promotions
|
||||
# GET /promotions.json
|
||||
@@ -119,6 +120,12 @@ class Settings::PromotionsController < ApplicationController
|
||||
render json: res
|
||||
end
|
||||
|
||||
def check_user
|
||||
if current_user.nil?
|
||||
redirect_to root_path
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
# Use callbacks to share common setup or constraints between actions.
|
||||
def set_promotion
|
||||
|
||||
Reference in New Issue
Block a user