I have created custom method in rails 4
def duplicate
new_house = @house.amoeba_dup
respond_to do |format|
if new_house.save
format.html { render action: 'new', notice: 'Category Attribute Added Successfully' }
else
format.html { render action: 'new' }
end
end
end
But it give Pundit::AuthorizationNotPerformedError
when I call duplicate method.