about summary refs log tree commit diff
path: root/app/controllers/api_controller.rb
blob: 8a27124760af476ad7af9625eb2fbf61426b6928 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class ApiController < ApplicationController
  protect_from_forgery with: :null_session
  skip_before_action :verify_authenticity_token

  protected

  def current_resource_owner
    User.find(doorkeeper_token.resource_owner_id) if doorkeeper_token
  end

  def current_user
    super || current_resource_owner
  end
end