Commit 910d96f

mokha <mokha@cisco.com>
2019-01-08 18:53:50
provide API for storing global configuration
1 parent 7f5dbe5
Changed files (1)
lib
scim
lib/scim/kit/v2.rb
@@ -21,6 +21,15 @@ module Scim
   module Kit
     # Version 2 of the SCIM RFC https://tools.ietf.org/html/rfc7644
     module V2
+      class << self
+        def configuration
+          @configuration ||= ::Scim::Kit::V2::Configuration.new
+        end
+
+        def configure
+          yield configuration
+        end
+      end
     end
   end
 end