main
1# frozen_string_literal: true
2
3module Scim
4 module V2
5 class ServiceProvidersController < ::Scim::Controller
6 skip_before_action :authenticate!
7
8 def show
9 render json: configuration.to_json, status: :ok
10 end
11
12 private
13
14 def configuration
15 Scim::Kit::V2.configuration.service_provider_configuration
16 end
17 end
18 end
19end