applicake/doorkeeper

View on GitHub
lib/doorkeeper/oauth.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Doorkeeper
  module OAuth
    GRANT_TYPES = [
      AUTHORIZATION_CODE = "authorization_code",
      IMPLICIT = "implicit",
      PASSWORD = "password",
      CLIENT_CREDENTIALS = "client_credentials",
      REFRESH_TOKEN = "refresh_token",
    ].freeze
  end
end