User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.
everytime I submit a form here (that I scaffolded) localhost:3000/syllabus_requests/new
The rescue_from Pundit::NotAuthorizedError, with: :user_not_authorized from my ApplicationController.rb file gets raised and I'm not sure why because in the policy class I have a create? method and it returns true
classSyllabusRequestPolicy<ApplicationPolicy
attr_reader :current_user,:model
def initialize(current_user, model)@current_user= current_user ||User.new@model= model #this is the syllabus_request record from the syllabus_requests table as a rails model objectenddef index?@current_user.role =="admin"enddef show?@current_user.role =="admin"enddef create?trueenddef edit?@current_user.role =="admin"enddef update?@current_user.role =="admin"enddef destroy?@current_user.role =="admin"endend
I have a controller
classSyllabusRequestsController<ApplicationController
before_action :set_syllabus_request, only:[:show,:edit,:update,:destroy]# GET /syllabus_requests# GET /syllabus_requests.jsondef index
@syllabus_requests=SyllabusRequest.all
authorize @syllabus_requestsend# GET /syllabus_requests/1# GET /syllabus_requests/1.jsondef show
authorize @syllabus_requestend# GET /syllabus_requests/newdefnew@syllabus_request=SyllabusRequest.new
authorize @syllabus_requestend# GET /syllabus_requests/1/editdef edit
authorize @syllabus_requestend# POST /syllabus_requests# POST /syllabus_requests.jsondef create
@syllabus_request=SyllabusRequest.new(syllabus_request_params)
authorize @syllabus_request
respond_to do|format|if@syllabus_request.save
format.html { redirect_to @syllabus_request, notice:'Syllabus request was successfully created.'}
format.json{ render :show,status::created, location:@syllabus_request}else
format.html { render :new}
format.json{ render json:@syllabus_request.errors,status::unprocessable_entity }endendend# PATCH/PUT /syllabus_requests/1# PATCH/PUT /syllabus_requests/1.jsondef update
authorize @syllabus_request
respond_to do|
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that
you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice
sessions to improve your knowledge and scores.
manpreet
Best Answer
3 years ago
everytime I submit a form here (that I scaffolded) localhost:3000/syllabus_requests/new
The rescue_from Pundit::NotAuthorizedError, with: :user_not_authorized from my ApplicationController.rb file gets raised and I'm not sure why because in the policy class I have a create? method and it returns true
i'm using ruby '2.3.1' gem 'rails', '~> 5.0.0', '>= 5.0.0.1' gem 'pundit', '~> 1.1'
I have a policy
I have a controller