scinote-web/app/controllers/doorkeeper/access_tokens_controller.rb

18 lines
289 B
Ruby

# frozen_string_literal: true
module Doorkeeper
class AccessTokensController < ApplicationController
before_action :find_token
def revoke
@token.revoke
end
private
def find_token
@token = current_user.access_tokens.find(params[:id])
end
end
end