mcordell/grape_token_auth

View on GitHub
lib/grape_token_auth/token_authentication.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module GrapeTokenAuth
  module TokenAuthentication
    def self.included(base)
      base.auth :grape_devise_token_auth
      base.helpers GrapeTokenAuth::ApiHelpers
    end
  end
end