Class: HasHelpers::ServiceTrust::JwksController
- Inherits:
-
ActionController::API
- Object
- ActionController::API
- HasHelpers::ServiceTrust::JwksController
- Defined in:
- app/controllers/has_helpers/service_trust/jwks_controller.rb
Instance Method Summary collapse
Instance Method Details
#show ⇒ Object
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 |