From f7b61e4b59bf1035444036dd2e44933b55482b72 Mon Sep 17 00:00:00 2001 From: Mauricio Giacomini Girardello <mgg12@inf.ufpr.br> Date: Fri, 1 Apr 2016 15:19:35 -0300 Subject: [PATCH] rendering all controller actions with json --- app/controllers/application_controller.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 2390c30d..d456b5cf 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -2,6 +2,8 @@ class ApplicationController < ActionController::API include DeviseTokenAuth::Concerns::SetUserByToken include Pundit + respond_to :json + # Prevent CSRF attacks by raising an exception. # For APIs, you may want to use :null_session instead. # protect_from_forgery with: :null_session -- GitLab