This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-05 03:50:59 -08:00
|
|
|
class ApiController < ApplicationController
|
|
|
|
protect_from_forgery with: :null_session
|
2016-08-17 08:56:23 -07:00
|
|
|
skip_before_action :verify_authenticity_token
|
2016-03-07 03:42:33 -08:00
|
|
|
|
2016-08-26 10:12:19 -07:00
|
|
|
rescue_from ActiveRecord::RecordInvalid do
|
|
|
|
render json: { error: 'Record invalid' }, status: 422
|
|
|
|
end
|
|
|
|
|
|
|
|
rescue_from ActiveRecord::RecordNotFound do
|
|
|
|
render json: { error: 'Record not found' }, status: 404
|
|
|
|
end
|
|
|
|
|
2016-03-07 03:42:33 -08:00
|
|
|
protected
|
|
|
|
|
|
|
|
def current_resource_owner
|
2016-03-11 07:47:36 -08:00
|
|
|
User.find(doorkeeper_token.resource_owner_id) if doorkeeper_token
|
2016-03-07 03:42:33 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def current_user
|
|
|
|
super || current_resource_owner
|
|
|
|
end
|
2016-03-05 03:50:59 -08:00
|
|
|
end
|