summaryrefslogtreecommitdiff
path: root/app/controllers/api_controller.rb
blob: 70b3cac9e5f4c87d83d0ec8ede1930f1194f628a (plain)
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