bcgoss/census

View on GitHub
app/controllers/api/v1/credentials_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api::V1
  class CredentialsController < Api::V1::ApiController
    before_action :doorkeeper_authorize!
    respond_to    :json

    def show
      render json: current_resource_owner
    end
  end
end