1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 06:26:52 +00:00
mastodon/app/controllers/api_controller.rb

15 lines
320 B
Ruby
Raw Normal View History

class ApiController < ApplicationController
protect_from_forgery with: :null_session
skip_before_filter :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