This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApplicationController < ActionController::Base | |
# Prevent CSRF attacks by raising an exception. | |
# For APIs, you may want to use :null_session instead. | |
protect_from_forgery with: :exception | |
end | |
module Api | |
module V1 | |
class AppsController < ApplicationController | |
skip_before_filter :verify_authenticity_token, :only => [:update_attr] | |
respond_to :json | |
No comments:
Post a Comment