Class: HasHelpers::ServiceTrust::JwksController

Inherits:
ActionController::API
  • Object
show all
Defined in:
app/controllers/has_helpers/service_trust/jwks_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



6
7
8
9
# File 'app/controllers/has_helpers/service_trust/jwks_controller.rb', line 6

def show
  expires_in 1.hour, public: true
  render json: { keys: KeyManager.verifiable_keys.map { |key| jwk(key) } }
end