Class: DaVinciCRDTestKit::Routes::JWKSetEndpointHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/davinci_crd_test_kit/routes/jwk_set_endpoint_handler.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.callObject



6
7
8
# File 'lib/davinci_crd_test_kit/routes/jwk_set_endpoint_handler.rb', line 6

def self.call(...)
  new.call(...)
end

Instance Method Details

#call(_env) ⇒ Object



10
11
12
# File 'lib/davinci_crd_test_kit/routes/jwk_set_endpoint_handler.rb', line 10

def call(_env)
  [200, { 'Content-Type' => 'application/json' }, [JWKS.jwks_json]]
end