scim_engine 1.0.0 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Rakefile +8 -1
- data/app/controllers/scim_engine/resources_controller.rb +2 -2
- data/app/models/scim_engine/complex_types/base.rb +18 -0
- data/app/models/scim_engine/complex_types/email.rb +3 -0
- data/app/models/scim_engine/complex_types/name.rb +2 -0
- data/app/models/scim_engine/complex_types/reference.rb +2 -0
- data/app/models/scim_engine/resource_type.rb +1 -0
- data/app/models/scim_engine/resources/base.rb +29 -0
- data/app/models/scim_engine/schema/attribute.rb +9 -0
- data/app/models/scim_engine/schema/base.rb +5 -0
- data/app/models/scim_engine/schema/email.rb +2 -0
- data/app/models/scim_engine/schema/group.rb +2 -0
- data/app/models/scim_engine/schema/name.rb +2 -0
- data/app/models/scim_engine/schema/reference.rb +2 -0
- data/app/models/scim_engine/schema/user.rb +2 -0
- data/app/models/scim_engine/service_provider_configuration.rb +1 -0
- data/lib/scim_engine/engine.rb +16 -0
- data/lib/scim_engine/version.rb +1 -1
- data/spec/controllers/scim_engine/resources_controller_spec.rb +16 -18
- data/spec/dummy/log/test.log +81 -682
- metadata +21 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9d949ba2807cdfbd9d4a623e82eadbc082a5c750321e61eabd28bf0a5a3a6f6a
|
4
|
+
data.tar.gz: 50238ef29ec508de2854fd7e2561ca34afee1cd681561ca1a68aa34ab86aca84
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6c5f211824f11e7d10487bf7911f86e7f23bdc0975a96c9e54c425bae7b3e696433da7bfb868270d56aab24a055fab17616f0306847caa944d84b1977354b1a
|
7
|
+
data.tar.gz: 4b80414d39224d0be9760c19f7d2479b4764ad7946f2153b6716d19e9121ae3fe1cf2227e33e2758b59e71c39c88cb50ae54370ed62b2b6266cb8524823cd9ef
|
data/Rakefile
CHANGED
@@ -20,6 +20,13 @@ load 'rails/tasks/engine.rake'
|
|
20
20
|
|
21
21
|
load 'rails/tasks/statistics.rake'
|
22
22
|
|
23
|
+
Bundler::GemHelper.install_tasks
|
23
24
|
|
25
|
+
require "rspec/core/rake_task"
|
26
|
+
|
27
|
+
desc "Run all examples"
|
28
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
29
|
+
t.ruby_opts = %w[-w]
|
30
|
+
end
|
31
|
+
task :default => :spec
|
24
32
|
|
25
|
-
Bundler::GemHelper.install_tasks
|
@@ -11,8 +11,8 @@ module ScimEngine
|
|
11
11
|
end
|
12
12
|
|
13
13
|
def create(resource_type, &block)
|
14
|
-
if resource_params[:id].present?
|
15
|
-
handle_scim_error(ErrorResponse.new(status: 400, detail: 'id
|
14
|
+
if resource_params[:id].present?
|
15
|
+
handle_scim_error(ErrorResponse.new(status: 400, detail: 'id is not a valid parameter for create'))
|
16
16
|
return
|
17
17
|
end
|
18
18
|
with_scim_resource(resource_type) do |resource|
|
@@ -1,5 +1,20 @@
|
|
1
1
|
module ScimEngine
|
2
2
|
module ComplexTypes
|
3
|
+
# This class represents complex types that could be used inside SCIM resources.
|
4
|
+
# Each complex type must inherit from this class. They also need to have their own schema defined.
|
5
|
+
# @example
|
6
|
+
# module ScimEngine
|
7
|
+
# module ComplexTypes
|
8
|
+
# class Email < Base
|
9
|
+
# set_schema ScimEngine::Schema::Email
|
10
|
+
#
|
11
|
+
# def as_json(options = {})
|
12
|
+
# {'type' => 'work', 'primary' => true}.merge(super(options))
|
13
|
+
# end
|
14
|
+
# end
|
15
|
+
# end
|
16
|
+
# end
|
17
|
+
#
|
3
18
|
class Base
|
4
19
|
include ActiveModel::Model
|
5
20
|
include ScimEngine::Schema::DerivedAttributes
|
@@ -10,6 +25,9 @@ module ScimEngine
|
|
10
25
|
@errors = ActiveModel::Errors.new(self)
|
11
26
|
end
|
12
27
|
|
28
|
+
# Converts the object to its SCIM representation which is always a json representation
|
29
|
+
# @param options [Hash] a hash that could provide default values for some of the attributes of this complex type object
|
30
|
+
#
|
13
31
|
def as_json(options={})
|
14
32
|
options[:except] ||= ['errors']
|
15
33
|
super.except(options)
|
@@ -1,8 +1,11 @@
|
|
1
1
|
module ScimEngine
|
2
2
|
module ComplexTypes
|
3
|
+
# Represents the complex email type.
|
4
|
+
# @see ScimEngine::Schema::Email
|
3
5
|
class Email < Base
|
4
6
|
set_schema ScimEngine::Schema::Email
|
5
7
|
|
8
|
+
# Returns the json representation of an email.
|
6
9
|
def as_json(options = {})
|
7
10
|
{'type' => 'work', 'primary' => true}.merge(super(options))
|
8
11
|
end
|
@@ -1,4 +1,5 @@
|
|
1
1
|
module ScimEngine
|
2
|
+
# Provides info about a resource type. Instances of this class are used to provide info through the /ResourceTypes endpoint of a SCIM service provider.
|
2
3
|
class ResourceType
|
3
4
|
include ActiveModel::Model
|
4
5
|
attr_accessor :meta, :endpoint, :schema, :schemas, :id, :name, :schemaExtensions
|
@@ -1,5 +1,6 @@
|
|
1
1
|
module ScimEngine
|
2
2
|
module Resources
|
3
|
+
# The base class for all SCIM resources.
|
3
4
|
class Base
|
4
5
|
include ActiveModel::Model
|
5
6
|
include ScimEngine::Schema::DerivedAttributes
|
@@ -27,6 +28,34 @@ module ScimEngine
|
|
27
28
|
flattened
|
28
29
|
end
|
29
30
|
|
31
|
+
# Can be used to extend an existing resource type's schema
|
32
|
+
# @example
|
33
|
+
# module Scim
|
34
|
+
# module Schema
|
35
|
+
# class MyExtension < ScimEngine::Schema::Base
|
36
|
+
#
|
37
|
+
# def initialize(options = {})
|
38
|
+
# super(name: 'ExtendedGroup',
|
39
|
+
# id: self.class.id,
|
40
|
+
# description: 'Represents extra info about a group',
|
41
|
+
# scim_attributes: self.class.scim_attributes)
|
42
|
+
# end
|
43
|
+
#
|
44
|
+
# def self.id
|
45
|
+
# 'urn:ietf:params:scim:schemas:extension:extendedgroup:2.0:Group'
|
46
|
+
# end
|
47
|
+
#
|
48
|
+
# def self.scim_attributes
|
49
|
+
# [ScimEngine::Schema::Attribute.new(name: 'someAddedAttribute',
|
50
|
+
# type: 'string',
|
51
|
+
# required: true,
|
52
|
+
# canonicalValues: ['FOO', 'BAR'])]
|
53
|
+
# end
|
54
|
+
# end
|
55
|
+
# end
|
56
|
+
# end
|
57
|
+
#
|
58
|
+
# ScimEngine::Resources::Group.extend_schema Scim::Schema::MyExtention
|
30
59
|
def self.extend_schema(schema)
|
31
60
|
derive_attributes_from_schema(schema)
|
32
61
|
extended_schemas << schema
|
@@ -1,10 +1,16 @@
|
|
1
1
|
module ScimEngine
|
2
2
|
module Schema
|
3
|
+
# Represents an attribute of a SCIM resource that is declared in its schema.
|
4
|
+
# Attributes can be simple or complex. A complex attribute needs to have its own schema that is passed to the initilize method when the attribute is instantiated.
|
5
|
+
# @example
|
6
|
+
# Attribute.new(name: 'userName', type: 'string', uniqueness: 'server')
|
7
|
+
# Attribute.new(name: 'name', complexType: ScimEngine::ComplexTypes::Name)
|
3
8
|
class Attribute
|
4
9
|
include ActiveModel::Model
|
5
10
|
include ScimEngine::Errors
|
6
11
|
attr_accessor :name, :type, :multiValued, :required, :caseExact, :mutability, :returned, :uniqueness, :subAttributes, :complexType, :canonicalValues
|
7
12
|
|
13
|
+
# @param options [Hash] a hash of values to be used for instantiating the attribute object. Some of the instance variables of the objects will have default values if this hash does not contain anything for them.
|
8
14
|
def initialize(options = {})
|
9
15
|
defaults = {
|
10
16
|
multiValued: false,
|
@@ -23,6 +29,9 @@ module ScimEngine
|
|
23
29
|
super(defaults.merge(options || {}))
|
24
30
|
end
|
25
31
|
|
32
|
+
# Validates a value against this attribute object. For simple attributes, it checks if blank is valid or not and if the type matches. For complex attributes, it delegates it to the valid? method of the complex type schema.
|
33
|
+
# If the value is not valid, validation message(s) are added to the errors attribute of this object.
|
34
|
+
# @return [Boolean] whether or not the value is valid for this attribute
|
26
35
|
def valid?(value)
|
27
36
|
return valid_blank? if value.blank? && !value.is_a?(FalseClass)
|
28
37
|
|
@@ -1,5 +1,7 @@
|
|
1
1
|
module ScimEngine
|
2
2
|
module Schema
|
3
|
+
# The base class that each schema class must inherit from.
|
4
|
+
# These classes represent the schema of a SCIM resource or a complex type that could be used in a resource.
|
3
5
|
class Base
|
4
6
|
include ActiveModel::Model
|
5
7
|
attr_accessor :id, :name, :description, :scim_attributes, :meta
|
@@ -9,12 +11,15 @@ module ScimEngine
|
|
9
11
|
@meta = Meta.new(resourceType: "Schema")
|
10
12
|
end
|
11
13
|
|
14
|
+
# Converts the schema to its json representation that will be returned by /SCHEMAS end-point of a SCIM service provider.
|
12
15
|
def as_json(options = {})
|
13
16
|
@meta.location = ScimEngine::Engine.routes.url_helpers.scim_schemas_path(name: id)
|
14
17
|
original = super
|
15
18
|
original.merge('attributes' => original.delete('scim_attributes'))
|
16
19
|
end
|
17
20
|
|
21
|
+
# Validates the resource against specific validations of each attribute,for example if the type of the attribute matches the one defined in the schema.
|
22
|
+
# @param resource [Object] a resource object that uses this schema
|
18
23
|
def self.valid?(resource)
|
19
24
|
cloned_scim_attributes.each do |scim_attribute|
|
20
25
|
resource.add_errors_from_hash(scim_attribute.errors.to_hash) unless scim_attribute.valid?(resource.send(scim_attribute.name))
|
data/lib/scim_engine/engine.rb
CHANGED
@@ -15,14 +15,30 @@ module ScimEngine
|
|
15
15
|
default_resources + custom_resources
|
16
16
|
end
|
17
17
|
|
18
|
+
# Can be used to add a new resource type which is not provided by the gem.
|
19
|
+
# @example
|
20
|
+
# module Scim
|
21
|
+
# module Resources
|
22
|
+
# class ShinyResource < ScimEngine::Resources::Base
|
23
|
+
# set_schema Scim::Schema::Shiny
|
24
|
+
#
|
25
|
+
# def self.endpoint
|
26
|
+
# "/Shinies"
|
27
|
+
# end
|
28
|
+
# end
|
29
|
+
# end
|
30
|
+
# end
|
31
|
+
# ScimEngine::Engine.add_custom_resource Scim::Resources::ShinyResource
|
18
32
|
def self.add_custom_resource(resource)
|
19
33
|
custom_resources << resource
|
20
34
|
end
|
21
35
|
|
36
|
+
# Returns the list of custom resources, if any.
|
22
37
|
def self.custom_resources
|
23
38
|
@custom_resources ||= []
|
24
39
|
end
|
25
40
|
|
41
|
+
# Returns the default resources added in this gem: User and Group.
|
26
42
|
def self.default_resources
|
27
43
|
[ Resources::User, Resources::Group ]
|
28
44
|
end
|
data/lib/scim_engine/version.rb
CHANGED
@@ -3,6 +3,7 @@ require 'rails_helper'
|
|
3
3
|
describe ScimEngine::ResourcesController do
|
4
4
|
|
5
5
|
before(:each) { allow(controller).to receive(:authenticated?).and_return(true) }
|
6
|
+
let(:response_body) { JSON.parse(response.body, symbolize_names: true) }
|
6
7
|
|
7
8
|
controller do
|
8
9
|
def show
|
@@ -39,7 +40,7 @@ describe ScimEngine::ResourcesController do
|
|
39
40
|
get :show, params: { id: '10', format: :scim }
|
40
41
|
|
41
42
|
expect(response).to be_ok
|
42
|
-
expect(
|
43
|
+
expect(response_body).to include(id: '10')
|
43
44
|
end
|
44
45
|
end
|
45
46
|
|
@@ -47,44 +48,42 @@ describe ScimEngine::ResourcesController do
|
|
47
48
|
it 'returns error if body is missing' do
|
48
49
|
post :create, params: { format: :scim }
|
49
50
|
expect(response.status).to eql(400)
|
50
|
-
expect(
|
51
|
+
expect(response_body[:detail]).to eql('must provide a request body')
|
51
52
|
end
|
52
53
|
|
53
54
|
it 'works if the request is valid' do
|
54
55
|
post :create, params: { displayName: 'Sauron biz', format: :scim }
|
55
56
|
expect(response).to have_http_status(:created)
|
56
|
-
expect(
|
57
|
+
expect(response_body[:displayName]).to eql('Sauron biz')
|
57
58
|
end
|
58
59
|
|
59
60
|
it 'renders error if resource object cannot be built from the params' do
|
60
61
|
put :update, params: { id: 'group-id', name: {email: 'a@b.com'}, format: :scim }
|
61
62
|
expect(response.status).to eql(400)
|
62
|
-
expect(
|
63
|
+
expect(response_body[:detail]).to match(/^Invalid/)
|
63
64
|
end
|
64
65
|
|
65
66
|
it 'renders application side error' do
|
66
67
|
allow_any_instance_of(ScimEngine::Resources::Group).to receive(:to_json).and_raise(ScimEngine::ErrorResponse.new(status: 400, detail: 'gaga'))
|
67
68
|
put :update, params: { id: 'group-id', displayName: 'invalid name', format: :scim }
|
68
69
|
expect(response.status).to eql(400)
|
69
|
-
expect(
|
70
|
+
expect(response_body[:detail]).to eql('gaga')
|
70
71
|
end
|
71
72
|
|
72
73
|
it 'renders error if id is provided' do
|
73
74
|
post :create, params: { id: 'some-id', displayName: 'sauron', format: :scim }
|
74
75
|
|
75
76
|
expect(response).to have_http_status(:bad_request)
|
76
|
-
|
77
|
-
parsed_response = JSON.parse(response.body)
|
78
|
-
expect(parsed_response['detail']).to start_with('id and externalId are not valid parameters for create')
|
77
|
+
expect(response_body[:detail]).to start_with('id is not a valid parameter for create')
|
79
78
|
end
|
80
79
|
|
81
|
-
it 'renders error if externalId is provided' do
|
80
|
+
it 'does not renders error if externalId is provided' do
|
82
81
|
post :create, params: { externalId: 'some-id', displayName: 'sauron', format: :scim }
|
83
82
|
|
84
|
-
expect(response).to have_http_status(:
|
83
|
+
expect(response).to have_http_status(:created)
|
85
84
|
|
86
|
-
|
87
|
-
expect(
|
85
|
+
expect(response_body[:displayName]).to eql('sauron')
|
86
|
+
expect(response_body[:externalId]).to eql('some-id')
|
88
87
|
end
|
89
88
|
end
|
90
89
|
|
@@ -92,26 +91,26 @@ describe ScimEngine::ResourcesController do
|
|
92
91
|
it 'returns error if body is missing' do
|
93
92
|
put :update, params: { id: 'group-id', format: :scim }
|
94
93
|
expect(response.status).to eql(400)
|
95
|
-
expect(
|
94
|
+
expect(response_body[:detail]).to eql('must provide a request body')
|
96
95
|
end
|
97
96
|
|
98
97
|
it 'works if the request is valid' do
|
99
98
|
put :update, params: { id: 'group-id', displayName: 'sauron', format: :scim }
|
100
99
|
expect(response.status).to eql(200)
|
101
|
-
expect(
|
100
|
+
expect(response_body[:displayName]).to eql('sauron')
|
102
101
|
end
|
103
102
|
|
104
103
|
it 'renders error if resource object cannot be built from the params' do
|
105
104
|
put :update, params: { id: 'group-id', name: {email: 'a@b.com'}, format: :scim }
|
106
105
|
expect(response.status).to eql(400)
|
107
|
-
expect(
|
106
|
+
expect(response_body[:detail]).to match(/^Invalid/)
|
108
107
|
end
|
109
108
|
|
110
109
|
it 'renders application side error' do
|
111
110
|
allow_any_instance_of(ScimEngine::Resources::Group).to receive(:to_json).and_raise(ScimEngine::ErrorResponse.new(status: 400, detail: 'gaga'))
|
112
111
|
put :update, params: { id: 'group-id', displayName: 'invalid name', format: :scim }
|
113
112
|
expect(response.status).to eql(400)
|
114
|
-
expect(
|
113
|
+
expect(response_body[:detail]).to eql('gaga')
|
115
114
|
end
|
116
115
|
|
117
116
|
end
|
@@ -127,8 +126,7 @@ describe ScimEngine::ResourcesController do
|
|
127
126
|
allow(controller).to receive(:successful_delete?).and_return(false)
|
128
127
|
delete :destroy, params: { id: 'group-id', format: :scim }
|
129
128
|
expect(response).to have_http_status(:internal_server_error)
|
130
|
-
|
131
|
-
expect(parsed_response['detail']).to eql("Failed to delete the resource with id 'group-id'. Please try again later")
|
129
|
+
expect(response_body[:detail]).to eql("Failed to delete the resource with id 'group-id'. Please try again later")
|
132
130
|
end
|
133
131
|
end
|
134
132
|
end
|
data/spec/dummy/log/test.log
CHANGED
@@ -1,520 +1,93 @@
|
|
1
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
2
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
3
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
4
|
-
Filter chain halted as :authenticate rendered or redirected
|
5
|
-
Completed 401 Unauthorized in 2ms (Views: 0.1ms)
|
6
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
7
|
-
Parameters: {"id"=>10}
|
8
|
-
Completed 404 Not Found in 1ms (Views: 0.2ms)
|
9
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
10
|
-
Filter chain halted as :require_scim rendered or redirected
|
11
|
-
Completed 406 Not Acceptable in 0ms (Views: 0.2ms)
|
12
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
13
|
-
Completed 200 OK in 13ms (Views: 0.8ms)
|
14
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
15
|
-
Parameters: {"name"=>"User"}
|
16
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
17
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
18
|
-
Parameters: {"name"=>"Group"}
|
19
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
20
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
21
|
-
Parameters: {"name"=>"Business"}
|
22
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
23
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
24
|
-
Parameters: {"name"=>"License"}
|
25
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
26
1
|
Processing by ScimEngine::ResourcesController#show as SCIM
|
27
2
|
Parameters: {"id"=>"10"}
|
28
|
-
Completed 200 OK in
|
3
|
+
Completed 200 OK in 44ms (Views: 2.3ms)
|
29
4
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
30
|
-
Completed 400 Bad Request in
|
5
|
+
Completed 400 Bad Request in 3ms (Views: 0.9ms)
|
31
6
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
32
7
|
Parameters: {"displayName"=>"Sauron biz"}
|
33
|
-
Completed 201 Created in
|
8
|
+
Completed 201 Created in 2ms (Views: 0.5ms)
|
34
9
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
35
10
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
36
|
-
Completed 400 Bad Request in
|
11
|
+
Completed 400 Bad Request in 11ms (Views: 0.8ms)
|
37
12
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
38
13
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
39
|
-
Completed 400 Bad Request in
|
14
|
+
Completed 400 Bad Request in 2ms (Views: 0.6ms)
|
40
15
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
41
|
-
Parameters: {"
|
42
|
-
Completed 400 Bad Request in
|
16
|
+
Parameters: {"displayName"=>"sauron", "id"=>"some-id"}
|
17
|
+
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
43
18
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
44
|
-
Parameters: {"
|
45
|
-
Completed
|
19
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
20
|
+
Completed 201 Created in 1ms (Views: 0.4ms)
|
46
21
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
47
22
|
Parameters: {"id"=>"group-id"}
|
48
|
-
Completed 400 Bad Request in
|
23
|
+
Completed 400 Bad Request in 1ms (Views: 0.6ms)
|
49
24
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
50
25
|
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
51
|
-
Completed 200 OK in
|
26
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
52
27
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
53
28
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
54
|
-
Completed 400 Bad Request in
|
29
|
+
Completed 400 Bad Request in 2ms (Views: 0.5ms)
|
55
30
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
56
31
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
57
|
-
Completed 400 Bad Request in
|
32
|
+
Completed 400 Bad Request in 3ms (Views: 0.8ms)
|
58
33
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
59
34
|
Parameters: {"id"=>"group-id"}
|
60
35
|
Completed 204 No Content in 0ms
|
61
36
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
62
37
|
Parameters: {"id"=>"group-id"}
|
63
|
-
Completed 500 Internal Server Error in
|
64
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
65
|
-
Completed 200 OK in 4ms (Views: 2.5ms)
|
66
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
67
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
68
|
-
Completed 200 OK in 3ms (Views: 1.5ms)
|
69
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
70
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
71
|
-
Completed 200 OK in 8ms (Views: 0.5ms)
|
72
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
73
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:extension:business:2.0:Group"}
|
74
|
-
Completed 200 OK in 2ms (Views: 0.5ms)
|
75
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
76
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:License"}
|
77
|
-
Completed 200 OK in 2ms (Views: 0.8ms)
|
78
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
79
|
-
Parameters: {"id"=>"fake"}
|
80
|
-
Completed 200 OK in 3ms (Views: 0.3ms)
|
81
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
82
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
83
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
84
|
-
Filter chain halted as :authenticate rendered or redirected
|
85
|
-
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
86
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
87
|
-
Filter chain halted as :authenticate rendered or redirected
|
88
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
89
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
90
|
-
Filter chain halted as :authenticate rendered or redirected
|
91
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
92
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
93
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
94
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
95
|
-
Filter chain halted as :authenticate rendered or redirected
|
96
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
97
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
98
|
-
Parameters: {"id"=>10}
|
99
|
-
Completed 404 Not Found in 1ms (Views: 0.2ms)
|
100
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
101
|
-
Filter chain halted as :require_scim rendered or redirected
|
102
|
-
Completed 406 Not Acceptable in 0ms (Views: 0.1ms)
|
103
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
104
|
-
Completed 200 OK in 5ms (Views: 0.4ms)
|
105
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
106
|
-
Completed 200 OK in 5ms (Views: 0.4ms)
|
107
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
108
|
-
Parameters: {"name"=>"User"}
|
109
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
110
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
111
|
-
Parameters: {"name"=>"Group"}
|
112
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
113
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
114
|
-
Parameters: {"name"=>"Gaga"}
|
115
|
-
Completed 200 OK in 3ms (Views: 0.2ms)
|
116
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
117
|
-
Parameters: {"id"=>"10"}
|
118
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
119
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
120
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
38
|
+
Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
|
121
39
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
122
|
-
Parameters: {"displayName"=>"
|
123
|
-
Completed 201 Created in
|
124
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
125
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
126
|
-
Completed 400 Bad Request in 6ms (Views: 0.2ms)
|
127
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
128
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
129
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
40
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
41
|
+
Completed 201 Created in 31ms (Views: 1.3ms)
|
130
42
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
131
|
-
Parameters: {"
|
132
|
-
Completed
|
43
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
44
|
+
Completed 201 Created in 36ms (Views: 1.8ms)
|
133
45
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
134
|
-
Parameters: {"
|
135
|
-
Completed
|
136
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
137
|
-
Parameters: {"id"=>"group-id"}
|
138
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
139
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
140
|
-
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
141
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
142
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
143
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
144
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
145
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
146
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
147
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
148
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
149
|
-
Parameters: {"id"=>"group-id"}
|
150
|
-
Completed 204 No Content in 0ms
|
151
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
152
|
-
Parameters: {"id"=>"group-id"}
|
153
|
-
Completed 500 Internal Server Error in 0ms (Views: 0.2ms)
|
154
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
155
|
-
Completed 200 OK in 7ms (Views: 6.8ms)
|
156
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
157
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
158
|
-
Completed 200 OK in 3ms (Views: 3.1ms)
|
159
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
160
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
161
|
-
Completed 200 OK in 4ms (Views: 3.2ms)
|
162
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
163
|
-
Parameters: {"name"=>"License"}
|
164
|
-
Completed 200 OK in 2ms (Views: 2.1ms)
|
165
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
166
|
-
Parameters: {"id"=>"fake"}
|
167
|
-
Completed 200 OK in 5ms (Views: 0.5ms)
|
168
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
169
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
170
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
171
|
-
Filter chain halted as :authenticate rendered or redirected
|
172
|
-
Completed 401 Unauthorized in 2ms (Views: 0.1ms)
|
173
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
174
|
-
Filter chain halted as :authenticate rendered or redirected
|
175
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
176
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
177
|
-
Filter chain halted as :authenticate rendered or redirected
|
178
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
179
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
180
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
181
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
182
|
-
Filter chain halted as :authenticate rendered or redirected
|
183
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
184
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
185
|
-
Parameters: {"id"=>10}
|
186
|
-
Completed 404 Not Found in 1ms (Views: 0.2ms)
|
187
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
188
|
-
Filter chain halted as :require_scim rendered or redirected
|
189
|
-
Completed 406 Not Acceptable in 0ms (Views: 0.2ms)
|
190
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
191
|
-
Completed 200 OK in 9ms (Views: 0.5ms)
|
192
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
193
|
-
Completed 200 OK in 4ms (Views: 0.5ms)
|
194
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
195
|
-
Parameters: {"name"=>"User"}
|
196
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
197
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
198
|
-
Parameters: {"name"=>"Group"}
|
199
|
-
Completed 200 OK in 3ms (Views: 0.2ms)
|
200
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
201
|
-
Parameters: {"name"=>"Gaga"}
|
202
|
-
Completed 200 OK in 4ms (Views: 0.2ms)
|
46
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
47
|
+
Completed 201 Created in 35ms (Views: 1.7ms)
|
203
48
|
Processing by ScimEngine::ResourcesController#show as SCIM
|
204
49
|
Parameters: {"id"=>"10"}
|
205
|
-
Completed 200 OK in
|
206
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
207
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
208
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
209
|
-
Parameters: {"displayName"=>"Sauron biz"}
|
210
|
-
Completed 201 Created in 1ms (Views: 0.2ms)
|
211
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
212
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
213
|
-
Completed 400 Bad Request in 8ms (Views: 0.3ms)
|
214
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
215
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
216
|
-
Completed 400 Bad Request in 2ms (Views: 0.2ms)
|
217
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
218
|
-
Parameters: {"id"=>"some-id", "displayName"=>"sauron"}
|
219
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
220
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
221
|
-
Parameters: {"externalId"=>"some-id", "displayName"=>"sauron"}
|
222
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
223
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
224
|
-
Parameters: {"id"=>"group-id"}
|
225
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
226
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
227
|
-
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
228
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
229
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
230
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
231
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
232
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
233
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
234
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
235
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
236
|
-
Parameters: {"id"=>"group-id"}
|
237
|
-
Completed 204 No Content in 0ms
|
238
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
239
|
-
Parameters: {"id"=>"group-id"}
|
240
|
-
Completed 500 Internal Server Error in 1ms (Views: 0.2ms)
|
241
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
242
|
-
Completed 200 OK in 13ms (Views: 12.7ms)
|
243
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
244
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
245
|
-
Completed 200 OK in 7ms (Views: 6.9ms)
|
246
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
247
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
248
|
-
Completed 200 OK in 9ms (Views: 7.5ms)
|
249
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
250
|
-
Parameters: {"name"=>"License"}
|
251
|
-
Completed 200 OK in 10ms (Views: 9.2ms)
|
252
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
253
|
-
Parameters: {"id"=>"fake"}
|
254
|
-
Completed 200 OK in 7ms (Views: 0.9ms)
|
255
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
256
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
257
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
258
|
-
Filter chain halted as :authenticate rendered or redirected
|
259
|
-
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
260
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
261
|
-
Filter chain halted as :authenticate rendered or redirected
|
262
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
263
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
264
|
-
Filter chain halted as :authenticate rendered or redirected
|
265
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
266
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
267
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
268
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
269
|
-
Filter chain halted as :authenticate rendered or redirected
|
270
|
-
Completed 401 Unauthorized in 1ms (Views: 0.2ms)
|
271
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
272
|
-
Parameters: {"id"=>10}
|
273
|
-
Completed 404 Not Found in 1ms (Views: 0.2ms)
|
274
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
275
|
-
Filter chain halted as :require_scim rendered or redirected
|
276
|
-
Completed 406 Not Acceptable in 0ms (Views: 0.2ms)
|
277
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
278
|
-
Completed 200 OK in 7ms (Views: 0.5ms)
|
279
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
280
|
-
Completed 200 OK in 5ms (Views: 0.5ms)
|
281
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
282
|
-
Parameters: {"name"=>"User"}
|
283
|
-
Completed 200 OK in 3ms (Views: 0.3ms)
|
284
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
285
|
-
Parameters: {"name"=>"Group"}
|
286
|
-
Completed 200 OK in 3ms (Views: 0.3ms)
|
287
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
288
|
-
Parameters: {"name"=>"Gaga"}
|
289
|
-
Completed 200 OK in 4ms (Views: 0.2ms)
|
50
|
+
Completed 200 OK in 32ms (Views: 1.4ms)
|
290
51
|
Processing by ScimEngine::ResourcesController#show as SCIM
|
291
52
|
Parameters: {"id"=>"10"}
|
292
|
-
Completed 200 OK in
|
53
|
+
Completed 200 OK in 44ms (Views: 1.6ms)
|
293
54
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
294
|
-
Completed 400 Bad Request in
|
295
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
296
|
-
Parameters: {"displayName"=>"Sauron biz"}
|
297
|
-
Completed 201 Created in 1ms (Views: 0.4ms)
|
298
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
299
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
300
|
-
Completed 400 Bad Request in 9ms (Views: 0.4ms)
|
301
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
302
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
303
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
304
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
305
|
-
Parameters: {"id"=>"some-id", "displayName"=>"sauron"}
|
306
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
307
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
308
|
-
Parameters: {"externalId"=>"some-id", "displayName"=>"sauron"}
|
309
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
310
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
311
|
-
Parameters: {"id"=>"group-id"}
|
312
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
313
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
314
|
-
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
315
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
316
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
317
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
318
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
319
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
320
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
321
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
322
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
323
|
-
Parameters: {"id"=>"group-id"}
|
324
|
-
Completed 204 No Content in 0ms
|
325
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
326
|
-
Parameters: {"id"=>"group-id"}
|
327
|
-
Completed 500 Internal Server Error in 1ms (Views: 0.2ms)
|
328
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
329
|
-
Completed 500 Internal Server Error in 5ms
|
330
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
331
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
332
|
-
Completed 500 Internal Server Error in 5ms
|
333
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
334
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
335
|
-
Completed 500 Internal Server Error in 4ms
|
336
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
337
|
-
Parameters: {"name"=>"License"}
|
338
|
-
Completed 500 Internal Server Error in 5ms
|
339
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
340
|
-
Parameters: {"id"=>"fake"}
|
341
|
-
Completed 200 OK in 6ms (Views: 0.6ms)
|
342
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
343
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
344
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
345
|
-
Filter chain halted as :authenticate rendered or redirected
|
346
|
-
Completed 401 Unauthorized in 3ms (Views: 0.2ms)
|
347
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
348
|
-
Filter chain halted as :authenticate rendered or redirected
|
349
|
-
Completed 401 Unauthorized in 1ms (Views: 0.2ms)
|
350
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
351
|
-
Filter chain halted as :authenticate rendered or redirected
|
352
|
-
Completed 401 Unauthorized in 1ms (Views: 0.2ms)
|
353
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
354
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
355
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
356
|
-
Filter chain halted as :authenticate rendered or redirected
|
357
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
358
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
359
|
-
Parameters: {"id"=>10}
|
360
|
-
Completed 404 Not Found in 3ms (Views: 0.3ms)
|
361
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
362
|
-
Filter chain halted as :require_scim rendered or redirected
|
363
|
-
Completed 406 Not Acceptable in 1ms (Views: 0.6ms)
|
364
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
365
|
-
Completed 200 OK in 9ms (Views: 0.6ms)
|
366
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
367
|
-
Completed 200 OK in 6ms (Views: 0.6ms)
|
368
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
369
|
-
Parameters: {"name"=>"User"}
|
370
|
-
Completed 200 OK in 4ms (Views: 0.3ms)
|
371
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
372
|
-
Parameters: {"name"=>"Group"}
|
373
|
-
Completed 200 OK in 5ms (Views: 0.4ms)
|
374
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
375
|
-
Parameters: {"name"=>"Gaga"}
|
376
|
-
Completed 200 OK in 7ms (Views: 0.4ms)
|
377
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
378
|
-
Parameters: {"id"=>"10"}
|
379
|
-
Completed 200 OK in 4ms (Views: 0.3ms)
|
380
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
381
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
55
|
+
Completed 400 Bad Request in 2ms (Views: 0.5ms)
|
382
56
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
383
57
|
Parameters: {"displayName"=>"Sauron biz"}
|
384
58
|
Completed 201 Created in 1ms (Views: 0.3ms)
|
385
59
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
386
60
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
387
|
-
Completed 400 Bad Request in
|
388
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
389
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
390
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
391
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
392
|
-
Parameters: {"id"=>"some-id", "displayName"=>"sauron"}
|
393
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
394
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
395
|
-
Parameters: {"externalId"=>"some-id", "displayName"=>"sauron"}
|
396
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
397
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
398
|
-
Parameters: {"id"=>"group-id"}
|
399
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
400
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
401
|
-
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
402
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
403
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
404
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
405
|
-
Completed 400 Bad Request in 2ms (Views: 0.3ms)
|
406
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
407
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
408
|
-
Completed 400 Bad Request in 2ms (Views: 0.1ms)
|
409
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
410
|
-
Parameters: {"id"=>"group-id"}
|
411
|
-
Completed 204 No Content in 0ms
|
412
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
413
|
-
Parameters: {"id"=>"group-id"}
|
414
|
-
Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
|
415
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
416
|
-
Completed 500 Internal Server Error in 6ms
|
417
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
418
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
419
|
-
Completed 500 Internal Server Error in 4ms
|
420
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
421
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
422
|
-
Completed 500 Internal Server Error in 4ms
|
423
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
424
|
-
Parameters: {"name"=>"License"}
|
425
|
-
Completed 500 Internal Server Error in 5ms
|
426
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
427
|
-
Parameters: {"id"=>"fake"}
|
428
|
-
Completed 200 OK in 5ms (Views: 0.7ms)
|
429
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
430
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
431
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
432
|
-
Filter chain halted as :authenticate rendered or redirected
|
433
|
-
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
434
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
435
|
-
Filter chain halted as :authenticate rendered or redirected
|
436
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
437
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
438
|
-
Filter chain halted as :authenticate rendered or redirected
|
439
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
440
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
441
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
442
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
443
|
-
Filter chain halted as :authenticate rendered or redirected
|
444
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
445
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
446
|
-
Parameters: {"id"=>10}
|
447
|
-
Completed 404 Not Found in 1ms (Views: 0.1ms)
|
448
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
449
|
-
Filter chain halted as :require_scim rendered or redirected
|
450
|
-
Completed 406 Not Acceptable in 0ms (Views: 0.1ms)
|
451
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
452
|
-
Completed 200 OK in 6ms (Views: 0.4ms)
|
453
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
454
|
-
Completed 200 OK in 3ms (Views: 0.4ms)
|
455
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
456
|
-
Parameters: {"name"=>"User"}
|
457
|
-
Completed 200 OK in 3ms (Views: 0.3ms)
|
458
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
459
|
-
Parameters: {"name"=>"Group"}
|
460
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
461
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
462
|
-
Parameters: {"name"=>"Gaga"}
|
463
|
-
Completed 200 OK in 4ms (Views: 0.3ms)
|
464
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
465
|
-
Parameters: {"id"=>"10"}
|
466
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
467
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
468
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
469
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
470
|
-
Parameters: {"displayName"=>"Sauron biz"}
|
471
|
-
Completed 201 Created in 1ms (Views: 0.2ms)
|
472
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
473
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
474
|
-
Completed 400 Bad Request in 4ms (Views: 0.1ms)
|
61
|
+
Completed 400 Bad Request in 6ms (Views: 0.6ms)
|
475
62
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
476
63
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
477
|
-
Completed 400 Bad Request in
|
64
|
+
Completed 400 Bad Request in 2ms (Views: 0.5ms)
|
478
65
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
479
|
-
Parameters: {"
|
66
|
+
Parameters: {"displayName"=>"sauron", "id"=>"some-id"}
|
480
67
|
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
481
68
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
482
|
-
Parameters: {"
|
483
|
-
Completed
|
69
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
70
|
+
Completed 201 Created in 1ms (Views: 0.2ms)
|
484
71
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
485
72
|
Parameters: {"id"=>"group-id"}
|
486
|
-
Completed 400 Bad Request in
|
73
|
+
Completed 400 Bad Request in 1ms (Views: 0.4ms)
|
487
74
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
488
75
|
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
489
76
|
Completed 200 OK in 1ms (Views: 0.2ms)
|
490
77
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
491
78
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
492
|
-
Completed 400 Bad Request in 1ms (Views: 0.
|
79
|
+
Completed 400 Bad Request in 1ms (Views: 0.4ms)
|
493
80
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
494
81
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
495
|
-
Completed 400 Bad Request in 1ms (Views: 0.
|
82
|
+
Completed 400 Bad Request in 1ms (Views: 0.5ms)
|
496
83
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
497
84
|
Parameters: {"id"=>"group-id"}
|
498
85
|
Completed 204 No Content in 0ms
|
499
86
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
500
87
|
Parameters: {"id"=>"group-id"}
|
501
88
|
Completed 500 Internal Server Error in 0ms (Views: 0.1ms)
|
502
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
503
|
-
Completed 500 Internal Server Error in 4ms
|
504
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
505
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
506
|
-
Completed 500 Internal Server Error in 3ms
|
507
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
508
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
509
|
-
Completed 500 Internal Server Error in 3ms
|
510
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
511
|
-
Parameters: {"name"=>"License"}
|
512
|
-
Completed 500 Internal Server Error in 3ms
|
513
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
514
|
-
Parameters: {"id"=>"fake"}
|
515
|
-
Completed 200 OK in 4ms (Views: 0.8ms)
|
516
89
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
517
|
-
Completed 200 OK in
|
90
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
518
91
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
519
92
|
Filter chain halted as :authenticate rendered or redirected
|
520
93
|
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
@@ -523,63 +96,63 @@ Filter chain halted as :authenticate rendered or redirected
|
|
523
96
|
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
524
97
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
525
98
|
Filter chain halted as :authenticate rendered or redirected
|
526
|
-
Completed 401 Unauthorized in
|
99
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms)
|
527
100
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
528
|
-
Completed 200 OK in 0ms (Views: 0.
|
101
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
529
102
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
530
103
|
Filter chain halted as :authenticate rendered or redirected
|
531
|
-
Completed 401 Unauthorized in
|
104
|
+
Completed 401 Unauthorized in 1ms (Views: 0.2ms)
|
532
105
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
533
|
-
Parameters: {"id"=>10}
|
534
|
-
Completed 404 Not Found in
|
106
|
+
Parameters: {"id"=>"10"}
|
107
|
+
Completed 404 Not Found in 4ms (Views: 1.2ms)
|
535
108
|
Processing by ScimEngine::ApplicationController#index as HTML
|
536
109
|
Filter chain halted as :require_scim rendered or redirected
|
537
|
-
Completed 406 Not Acceptable in
|
110
|
+
Completed 406 Not Acceptable in 1ms (Views: 0.3ms)
|
538
111
|
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
539
|
-
Completed 200 OK in
|
112
|
+
Completed 200 OK in 6ms (Views: 0.8ms)
|
540
113
|
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
541
|
-
Completed 200 OK in
|
114
|
+
Completed 200 OK in 2ms (Views: 0.8ms)
|
542
115
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
543
116
|
Parameters: {"name"=>"User"}
|
544
|
-
Completed 200 OK in
|
117
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
545
118
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
546
119
|
Parameters: {"name"=>"Group"}
|
547
|
-
Completed 200 OK in 2ms (Views: 0.
|
120
|
+
Completed 200 OK in 2ms (Views: 0.6ms)
|
548
121
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
549
122
|
Parameters: {"name"=>"Gaga"}
|
550
|
-
Completed 200 OK in
|
123
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
551
124
|
Processing by ScimEngine::ResourcesController#show as SCIM
|
552
125
|
Parameters: {"id"=>"10"}
|
553
|
-
Completed 200 OK in
|
126
|
+
Completed 200 OK in 5ms (Views: 0.8ms)
|
554
127
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
555
|
-
Completed 400 Bad Request in
|
128
|
+
Completed 400 Bad Request in 1ms (Views: 0.7ms)
|
556
129
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
557
130
|
Parameters: {"displayName"=>"Sauron biz"}
|
558
|
-
Completed 201 Created in 1ms (Views: 0.
|
131
|
+
Completed 201 Created in 1ms (Views: 0.5ms)
|
559
132
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
560
133
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
561
|
-
Completed 400 Bad Request in
|
134
|
+
Completed 400 Bad Request in 10ms (Views: 0.6ms)
|
562
135
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
563
136
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
564
|
-
Completed 400 Bad Request in
|
137
|
+
Completed 400 Bad Request in 2ms (Views: 0.8ms)
|
565
138
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
566
|
-
Parameters: {"
|
139
|
+
Parameters: {"displayName"=>"sauron", "id"=>"some-id"}
|
567
140
|
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
568
141
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
569
|
-
Parameters: {"
|
570
|
-
Completed
|
142
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
143
|
+
Completed 201 Created in 1ms (Views: 0.3ms)
|
571
144
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
572
145
|
Parameters: {"id"=>"group-id"}
|
573
|
-
Completed 400 Bad Request in
|
146
|
+
Completed 400 Bad Request in 1ms (Views: 0.6ms)
|
574
147
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
575
148
|
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
576
149
|
Completed 200 OK in 1ms (Views: 0.2ms)
|
577
150
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
578
151
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
579
|
-
Completed 400 Bad Request in
|
152
|
+
Completed 400 Bad Request in 2ms (Views: 0.5ms)
|
580
153
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
581
154
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
582
|
-
Completed 400 Bad Request in
|
155
|
+
Completed 400 Bad Request in 2ms (Views: 0.6ms)
|
583
156
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
584
157
|
Parameters: {"id"=>"group-id"}
|
585
158
|
Completed 204 No Content in 0ms
|
@@ -587,19 +160,19 @@ Processing by ScimEngine::ResourcesController#destroy as SCIM
|
|
587
160
|
Parameters: {"id"=>"group-id"}
|
588
161
|
Completed 500 Internal Server Error in 0ms (Views: 0.2ms)
|
589
162
|
Processing by ScimEngine::SchemasController#index as SCIM
|
590
|
-
Completed
|
163
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
591
164
|
Processing by ScimEngine::SchemasController#index as SCIM
|
592
165
|
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
593
|
-
Completed
|
166
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
594
167
|
Processing by ScimEngine::SchemasController#index as SCIM
|
595
168
|
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
596
|
-
Completed
|
169
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
597
170
|
Processing by ScimEngine::SchemasController#index as SCIM
|
598
171
|
Parameters: {"name"=>"License"}
|
599
|
-
Completed
|
172
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
600
173
|
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
601
174
|
Parameters: {"id"=>"fake"}
|
602
|
-
Completed 200 OK in 4ms (Views: 0.
|
175
|
+
Completed 200 OK in 4ms (Views: 0.5ms)
|
603
176
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
604
177
|
Completed 200 OK in 1ms (Views: 0.2ms)
|
605
178
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
@@ -607,257 +180,83 @@ Filter chain halted as :authenticate rendered or redirected
|
|
607
180
|
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
608
181
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
609
182
|
Filter chain halted as :authenticate rendered or redirected
|
610
|
-
Completed 401 Unauthorized in
|
183
|
+
Completed 401 Unauthorized in 1ms (Views: 0.2ms)
|
611
184
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
612
185
|
Filter chain halted as :authenticate rendered or redirected
|
613
|
-
Completed 401 Unauthorized in 0ms (Views: 0.
|
186
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
614
187
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
615
188
|
Completed 200 OK in 0ms (Views: 0.1ms)
|
616
189
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
617
190
|
Filter chain halted as :authenticate rendered or redirected
|
618
191
|
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
619
192
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
620
|
-
Parameters: {"id"=>10}
|
621
|
-
Completed 404 Not Found in 2ms (Views: 0.
|
193
|
+
Parameters: {"id"=>"10"}
|
194
|
+
Completed 404 Not Found in 2ms (Views: 0.7ms)
|
622
195
|
Processing by ScimEngine::ApplicationController#index as HTML
|
623
196
|
Filter chain halted as :require_scim rendered or redirected
|
624
197
|
Completed 406 Not Acceptable in 0ms (Views: 0.2ms)
|
625
198
|
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
626
|
-
Completed 200 OK in
|
199
|
+
Completed 200 OK in 4ms (Views: 0.6ms)
|
627
200
|
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
628
|
-
Completed 200 OK in
|
201
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
629
202
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
630
203
|
Parameters: {"name"=>"User"}
|
631
|
-
Completed 200 OK in 3ms (Views: 0.3ms)
|
632
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
633
|
-
Parameters: {"name"=>"Group"}
|
634
|
-
Completed 200 OK in 3ms (Views: 0.3ms)
|
635
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
636
|
-
Parameters: {"name"=>"Gaga"}
|
637
|
-
Completed 200 OK in 5ms (Views: 0.3ms)
|
638
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
639
|
-
Parameters: {"id"=>"10"}
|
640
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
641
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
642
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
643
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
644
|
-
Parameters: {"displayName"=>"Sauron biz"}
|
645
|
-
Completed 201 Created in 1ms (Views: 0.3ms)
|
646
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
647
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
648
|
-
Completed 400 Bad Request in 6ms (Views: 0.2ms)
|
649
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
650
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
651
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
652
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
653
|
-
Parameters: {"id"=>"some-id", "displayName"=>"sauron"}
|
654
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
655
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
656
|
-
Parameters: {"externalId"=>"some-id", "displayName"=>"sauron"}
|
657
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
658
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
659
|
-
Parameters: {"id"=>"group-id"}
|
660
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
661
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
662
|
-
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
663
204
|
Completed 200 OK in 1ms (Views: 0.2ms)
|
664
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
665
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
666
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
667
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
668
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
669
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
670
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
671
|
-
Parameters: {"id"=>"group-id"}
|
672
|
-
Completed 204 No Content in 0ms
|
673
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
674
|
-
Parameters: {"id"=>"group-id"}
|
675
|
-
Completed 500 Internal Server Error in 0ms (Views: 0.2ms)
|
676
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
677
|
-
Completed 200 OK in 8ms (Views: 7.9ms)
|
678
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
679
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
680
|
-
Completed 200 OK in 4ms (Views: 3.9ms)
|
681
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
682
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
683
|
-
Completed 200 OK in 4ms (Views: 3.4ms)
|
684
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
685
|
-
Parameters: {"name"=>"License"}
|
686
|
-
Completed 200 OK in 4ms (Views: 3.2ms)
|
687
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
688
|
-
Parameters: {"id"=>"fake"}
|
689
|
-
Completed 200 OK in 5ms (Views: 0.7ms)
|
690
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
691
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
692
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
693
|
-
Filter chain halted as :authenticate rendered or redirected
|
694
|
-
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
695
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
696
|
-
Filter chain halted as :authenticate rendered or redirected
|
697
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
698
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
699
|
-
Filter chain halted as :authenticate rendered or redirected
|
700
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
701
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
702
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
703
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
704
|
-
Filter chain halted as :authenticate rendered or redirected
|
705
|
-
Completed 401 Unauthorized in 1ms (Views: 0.2ms)
|
706
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
707
|
-
Parameters: {"id"=>10}
|
708
|
-
Completed 404 Not Found in 2ms (Views: 0.2ms)
|
709
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
710
|
-
Filter chain halted as :require_scim rendered or redirected
|
711
|
-
Completed 406 Not Acceptable in 1ms (Views: 0.3ms)
|
712
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
713
|
-
Completed 200 OK in 10ms (Views: 0.7ms)
|
714
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
715
|
-
Completed 200 OK in 10ms (Views: 0.7ms)
|
716
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
717
|
-
Parameters: {"name"=>"User"}
|
718
|
-
Completed 200 OK in 4ms (Views: 0.4ms)
|
719
205
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
720
206
|
Parameters: {"name"=>"Group"}
|
721
|
-
Completed 200 OK in
|
207
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
722
208
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
723
209
|
Parameters: {"name"=>"Gaga"}
|
724
|
-
Completed 200 OK in
|
210
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
725
211
|
Processing by ScimEngine::ResourcesController#show as SCIM
|
726
212
|
Parameters: {"id"=>"10"}
|
727
|
-
Completed 200 OK in 3ms (Views: 0.3ms)
|
728
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
729
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
730
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
731
|
-
Parameters: {"displayName"=>"Sauron biz"}
|
732
|
-
Completed 201 Created in 1ms (Views: 0.2ms)
|
733
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
734
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
735
|
-
Completed 400 Bad Request in 7ms (Views: 0.2ms)
|
736
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
737
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
738
|
-
Completed 400 Bad Request in 2ms (Views: 0.2ms)
|
739
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
740
|
-
Parameters: {"id"=>"some-id", "displayName"=>"sauron"}
|
741
|
-
Completed 400 Bad Request in 1ms (Views: 0.4ms)
|
742
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
743
|
-
Parameters: {"externalId"=>"some-id", "displayName"=>"sauron"}
|
744
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
745
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
746
|
-
Parameters: {"id"=>"group-id"}
|
747
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
748
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
749
|
-
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
750
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
751
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
752
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
753
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
754
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
755
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
756
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
757
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
758
|
-
Parameters: {"id"=>"group-id"}
|
759
|
-
Completed 204 No Content in 0ms
|
760
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
761
|
-
Parameters: {"id"=>"group-id"}
|
762
|
-
Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
|
763
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
764
|
-
Completed 200 OK in 11ms (Views: 10.9ms)
|
765
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
766
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
767
|
-
Completed 200 OK in 5ms (Views: 4.8ms)
|
768
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
769
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
770
|
-
Completed 200 OK in 4ms (Views: 3.3ms)
|
771
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
772
|
-
Parameters: {"name"=>"License"}
|
773
|
-
Completed 200 OK in 3ms (Views: 2.8ms)
|
774
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
775
|
-
Parameters: {"id"=>"fake"}
|
776
|
-
Completed 200 OK in 5ms (Views: 0.5ms)
|
777
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
778
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
779
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
780
|
-
Filter chain halted as :authenticate rendered or redirected
|
781
|
-
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
782
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
783
|
-
Filter chain halted as :authenticate rendered or redirected
|
784
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
785
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
786
|
-
Filter chain halted as :authenticate rendered or redirected
|
787
|
-
Completed 401 Unauthorized in 1ms (Views: 0.2ms)
|
788
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
789
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
790
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
791
|
-
Filter chain halted as :authenticate rendered or redirected
|
792
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
793
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
794
|
-
Parameters: {"id"=>10}
|
795
|
-
Completed 404 Not Found in 1ms (Views: 0.1ms)
|
796
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
797
|
-
Filter chain halted as :require_scim rendered or redirected
|
798
|
-
Completed 406 Not Acceptable in 0ms (Views: 0.2ms)
|
799
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
800
|
-
Completed 200 OK in 5ms (Views: 0.4ms)
|
801
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
802
|
-
Completed 200 OK in 4ms (Views: 0.5ms)
|
803
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
804
|
-
Parameters: {"name"=>"User"}
|
805
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
806
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
807
|
-
Parameters: {"name"=>"Group"}
|
808
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
809
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
810
|
-
Parameters: {"name"=>"Gaga"}
|
811
213
|
Completed 200 OK in 3ms (Views: 0.2ms)
|
812
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
813
|
-
Parameters: {"id"=>"10"}
|
814
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
815
214
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
816
|
-
Completed 400 Bad Request in
|
215
|
+
Completed 400 Bad Request in 1ms (Views: 0.5ms)
|
817
216
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
818
217
|
Parameters: {"displayName"=>"Sauron biz"}
|
819
218
|
Completed 201 Created in 1ms (Views: 0.2ms)
|
820
219
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
821
220
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
822
|
-
Completed 400 Bad Request in
|
221
|
+
Completed 400 Bad Request in 7ms (Views: 0.5ms)
|
823
222
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
824
223
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
825
|
-
Completed 400 Bad Request in
|
224
|
+
Completed 400 Bad Request in 2ms (Views: 0.6ms)
|
826
225
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
827
|
-
Parameters: {"
|
226
|
+
Parameters: {"displayName"=>"sauron", "id"=>"some-id"}
|
828
227
|
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
829
228
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
830
|
-
Parameters: {"
|
831
|
-
Completed
|
229
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
230
|
+
Completed 201 Created in 1ms (Views: 0.3ms)
|
832
231
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
833
232
|
Parameters: {"id"=>"group-id"}
|
834
|
-
Completed 400 Bad Request in
|
233
|
+
Completed 400 Bad Request in 1ms (Views: 0.5ms)
|
835
234
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
836
235
|
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
837
236
|
Completed 200 OK in 1ms (Views: 0.2ms)
|
838
237
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
839
238
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
840
|
-
Completed 400 Bad Request in
|
239
|
+
Completed 400 Bad Request in 2ms (Views: 0.8ms)
|
841
240
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
842
241
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
843
|
-
Completed 400 Bad Request in 1ms (Views: 0.
|
242
|
+
Completed 400 Bad Request in 1ms (Views: 0.5ms)
|
844
243
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
845
244
|
Parameters: {"id"=>"group-id"}
|
846
245
|
Completed 204 No Content in 0ms
|
847
246
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
848
247
|
Parameters: {"id"=>"group-id"}
|
849
|
-
Completed 500 Internal Server Error in 0ms (Views: 0.
|
248
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.2ms)
|
850
249
|
Processing by ScimEngine::SchemasController#index as SCIM
|
851
|
-
Completed 200 OK in
|
250
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
852
251
|
Processing by ScimEngine::SchemasController#index as SCIM
|
853
252
|
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
854
|
-
Completed 200 OK in
|
253
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
855
254
|
Processing by ScimEngine::SchemasController#index as SCIM
|
856
255
|
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
857
|
-
Completed 200 OK in
|
256
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
858
257
|
Processing by ScimEngine::SchemasController#index as SCIM
|
859
258
|
Parameters: {"name"=>"License"}
|
860
|
-
Completed 200 OK in
|
259
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
861
260
|
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
862
261
|
Parameters: {"id"=>"fake"}
|
863
262
|
Completed 200 OK in 5ms (Views: 0.7ms)
|