1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
class ApiController < ApplicationController skip_before_filter :verify_authenticity_token respond_to :json protected def require_login require_token end def anonymous_access_allowed? APP_CONFIG[:allow_anonymous_certs] end end