summaryrefslogtreecommitdiff
path: root/app/controllers/api_controller.rb
blob: 95c8f572729cd873cc9eb921e27ffc81abf23bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class ApiController < ApplicationController

  skip_before_filter :verify_authenticity_token

  protected

  def require_login
    require_token
  end

  def anonymous_access_allowed?
    APP_CONFIG[:allow_anonymous_certs]
  end

end