doorkeeper-gem/doorkeeper

View on GitHub
lib/doorkeeper/grant_flow/fallback_flow.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Doorkeeper
  module GrantFlow
    class FallbackFlow < Flow
      def handles_grant_type?
        false
      end

      def handles_response_type?
        false
      end
    end
  end
end