scim_engine 1.0.1 → 1.0.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7da5e85e5a2df0ec584301702be000824bb72b36
|
4
|
+
data.tar.gz: 6aa14c5c6c4dc74490268787b1a9ae88e1b8139e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0f26ac88eb44508780df5ab74ad8e53629200bb6dfeb24c1356590397352acd676e844d37aab87f9235dc2ac0d3c228591335200996ecde563a2860d9441d21
|
7
|
+
data.tar.gz: 7e30b71b944d7ce761b0f822f9fd2e06f3ed0ad73b948d7377bb220aadf8f49545d3dc3c47f54aab5530fd4dadbb98a19103247eca72b94505143eea5032c174
|
@@ -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|
|
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,863 +1,175 @@
|
|
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
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
27
|
-
Parameters: {"id"=>"10"}
|
28
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
29
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
30
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
31
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
32
|
-
Parameters: {"displayName"=>"Sauron biz"}
|
33
|
-
Completed 201 Created in 1ms (Views: 0.2ms)
|
34
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
35
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
36
|
-
Completed 400 Bad Request in 5ms (Views: 0.2ms)
|
37
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
38
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
39
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
40
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
41
|
-
Parameters: {"id"=>"some-id", "displayName"=>"sauron"}
|
42
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
43
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
44
|
-
Parameters: {"externalId"=>"some-id", "displayName"=>"sauron"}
|
45
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
46
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
47
|
-
Parameters: {"id"=>"group-id"}
|
48
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
49
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
50
|
-
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
51
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
52
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
53
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
54
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
55
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
56
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
57
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
58
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
59
|
-
Parameters: {"id"=>"group-id"}
|
60
|
-
Completed 204 No Content in 0ms
|
61
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
62
|
-
Parameters: {"id"=>"group-id"}
|
63
|
-
Completed 500 Internal Server Error in 0ms (Views: 0.1ms)
|
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)
|
121
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
122
|
-
Parameters: {"displayName"=>"Sauron biz"}
|
123
|
-
Completed 201 Created in 1ms (Views: 0.2ms)
|
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)
|
130
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
131
|
-
Parameters: {"id"=>"some-id", "displayName"=>"sauron"}
|
132
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
133
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
134
|
-
Parameters: {"externalId"=>"some-id", "displayName"=>"sauron"}
|
135
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
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)
|
203
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
204
|
-
Parameters: {"id"=>"10"}
|
205
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
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)
|
290
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
291
|
-
Parameters: {"id"=>"10"}
|
292
|
-
Completed 200 OK in 3ms (Views: 0.3ms)
|
293
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
294
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
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)
|
382
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
383
|
-
Parameters: {"displayName"=>"Sauron biz"}
|
384
|
-
Completed 201 Created in 1ms (Views: 0.3ms)
|
385
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
386
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
387
|
-
Completed 400 Bad Request in 7ms (Views: 0.2ms)
|
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
1
|
Processing by ScimEngine::ResourcesController#show as SCIM
|
465
2
|
Parameters: {"id"=>"10"}
|
466
|
-
Completed 200 OK in
|
3
|
+
Completed 200 OK in 44ms (Views: 2.3ms)
|
467
4
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
468
|
-
Completed 400 Bad Request in
|
5
|
+
Completed 400 Bad Request in 3ms (Views: 0.9ms)
|
469
6
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
470
7
|
Parameters: {"displayName"=>"Sauron biz"}
|
471
|
-
Completed 201 Created in
|
8
|
+
Completed 201 Created in 2ms (Views: 0.5ms)
|
472
9
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
473
10
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
474
|
-
Completed 400 Bad Request in
|
11
|
+
Completed 400 Bad Request in 11ms (Views: 0.8ms)
|
475
12
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
476
13
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
477
|
-
Completed 400 Bad Request in
|
14
|
+
Completed 400 Bad Request in 2ms (Views: 0.6ms)
|
478
15
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
479
|
-
Parameters: {"
|
480
|
-
Completed 400 Bad Request in
|
16
|
+
Parameters: {"displayName"=>"sauron", "id"=>"some-id"}
|
17
|
+
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
481
18
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
482
|
-
Parameters: {"
|
483
|
-
Completed
|
19
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
20
|
+
Completed 201 Created in 1ms (Views: 0.4ms)
|
484
21
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
485
22
|
Parameters: {"id"=>"group-id"}
|
486
|
-
Completed 400 Bad Request in
|
23
|
+
Completed 400 Bad Request in 1ms (Views: 0.6ms)
|
487
24
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
488
25
|
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
489
|
-
Completed 200 OK in
|
26
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
490
27
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
491
28
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
492
|
-
Completed 400 Bad Request in
|
29
|
+
Completed 400 Bad Request in 2ms (Views: 0.5ms)
|
493
30
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
494
31
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
495
|
-
Completed 400 Bad Request in
|
32
|
+
Completed 400 Bad Request in 3ms (Views: 0.8ms)
|
496
33
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
497
34
|
Parameters: {"id"=>"group-id"}
|
498
35
|
Completed 204 No Content in 0ms
|
499
36
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
500
37
|
Parameters: {"id"=>"group-id"}
|
501
|
-
Completed 500 Internal Server Error in
|
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
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
517
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
518
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
519
|
-
Filter chain halted as :authenticate rendered or redirected
|
520
|
-
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
521
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
522
|
-
Filter chain halted as :authenticate rendered or redirected
|
523
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
524
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
525
|
-
Filter chain halted as :authenticate rendered or redirected
|
526
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
527
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
528
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
529
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
530
|
-
Filter chain halted as :authenticate rendered or redirected
|
531
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
532
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
533
|
-
Parameters: {"id"=>10}
|
534
|
-
Completed 404 Not Found in 1ms (Views: 0.1ms)
|
535
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
536
|
-
Filter chain halted as :require_scim rendered or redirected
|
537
|
-
Completed 406 Not Acceptable in 0ms (Views: 0.1ms)
|
538
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
539
|
-
Completed 200 OK in 4ms (Views: 0.6ms)
|
540
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
541
|
-
Completed 200 OK in 3ms (Views: 0.4ms)
|
542
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
543
|
-
Parameters: {"name"=>"User"}
|
544
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
545
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
546
|
-
Parameters: {"name"=>"Group"}
|
547
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
548
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
549
|
-
Parameters: {"name"=>"Gaga"}
|
550
|
-
Completed 200 OK in 3ms (Views: 0.2ms)
|
551
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
552
|
-
Parameters: {"id"=>"10"}
|
553
|
-
Completed 200 OK in 2ms (Views: 0.2ms)
|
554
|
-
Processing by ScimEngine::ResourcesController#create as SCIM
|
555
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
38
|
+
Completed 500 Internal Server Error in 1ms (Views: 0.3ms)
|
556
39
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
557
|
-
Parameters: {"displayName"=>"
|
558
|
-
Completed 201 Created in
|
559
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
560
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
561
|
-
Completed 400 Bad Request in 6ms (Views: 0.3ms)
|
562
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
563
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
564
|
-
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)
|
565
42
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
566
|
-
Parameters: {"
|
567
|
-
Completed
|
43
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
44
|
+
Completed 201 Created in 36ms (Views: 1.8ms)
|
568
45
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
569
|
-
Parameters: {"
|
570
|
-
Completed
|
571
|
-
Processing by ScimEngine::ResourcesController#
|
572
|
-
Parameters: {"id"=>"
|
573
|
-
Completed
|
574
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
575
|
-
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
576
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
577
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
578
|
-
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
579
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
580
|
-
Processing by ScimEngine::ResourcesController#update as SCIM
|
581
|
-
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
582
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
583
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
584
|
-
Parameters: {"id"=>"group-id"}
|
585
|
-
Completed 204 No Content in 0ms
|
586
|
-
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
587
|
-
Parameters: {"id"=>"group-id"}
|
588
|
-
Completed 500 Internal Server Error in 0ms (Views: 0.2ms)
|
589
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
590
|
-
Completed 500 Internal Server Error in 6ms
|
591
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
592
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
593
|
-
Completed 500 Internal Server Error in 2ms
|
594
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
595
|
-
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
596
|
-
Completed 500 Internal Server Error in 3ms
|
597
|
-
Processing by ScimEngine::SchemasController#index as SCIM
|
598
|
-
Parameters: {"name"=>"License"}
|
599
|
-
Completed 500 Internal Server Error in 3ms
|
600
|
-
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
601
|
-
Parameters: {"id"=>"fake"}
|
602
|
-
Completed 200 OK in 4ms (Views: 0.4ms)
|
603
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
604
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
605
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
606
|
-
Filter chain halted as :authenticate rendered or redirected
|
607
|
-
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
608
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
609
|
-
Filter chain halted as :authenticate rendered or redirected
|
610
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
611
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
612
|
-
Filter chain halted as :authenticate rendered or redirected
|
613
|
-
Completed 401 Unauthorized in 0ms (Views: 0.1ms)
|
614
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
615
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
616
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
617
|
-
Filter chain halted as :authenticate rendered or redirected
|
618
|
-
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
619
|
-
Processing by ScimEngine::ApplicationController#index as SCIM
|
620
|
-
Parameters: {"id"=>10}
|
621
|
-
Completed 404 Not Found in 2ms (Views: 0.2ms)
|
622
|
-
Processing by ScimEngine::ApplicationController#index as HTML
|
623
|
-
Filter chain halted as :require_scim rendered or redirected
|
624
|
-
Completed 406 Not Acceptable in 0ms (Views: 0.2ms)
|
625
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
626
|
-
Completed 200 OK in 6ms (Views: 0.3ms)
|
627
|
-
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
628
|
-
Completed 200 OK in 5ms (Views: 0.6ms)
|
629
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
630
|
-
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)
|
46
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
47
|
+
Completed 201 Created in 35ms (Views: 1.7ms)
|
48
|
+
Processing by ScimEngine::ResourcesController#show as SCIM
|
49
|
+
Parameters: {"id"=>"10"}
|
50
|
+
Completed 200 OK in 32ms (Views: 1.4ms)
|
638
51
|
Processing by ScimEngine::ResourcesController#show as SCIM
|
639
52
|
Parameters: {"id"=>"10"}
|
640
|
-
Completed 200 OK in
|
53
|
+
Completed 200 OK in 44ms (Views: 1.6ms)
|
641
54
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
642
|
-
Completed 400 Bad Request in
|
55
|
+
Completed 400 Bad Request in 2ms (Views: 0.5ms)
|
643
56
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
644
57
|
Parameters: {"displayName"=>"Sauron biz"}
|
645
58
|
Completed 201 Created in 1ms (Views: 0.3ms)
|
646
59
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
647
60
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
648
|
-
Completed 400 Bad Request in 6ms (Views: 0.
|
61
|
+
Completed 400 Bad Request in 6ms (Views: 0.6ms)
|
649
62
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
650
63
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
651
|
-
Completed 400 Bad Request in
|
64
|
+
Completed 400 Bad Request in 2ms (Views: 0.5ms)
|
652
65
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
653
|
-
Parameters: {"
|
654
|
-
Completed 400 Bad Request in
|
66
|
+
Parameters: {"displayName"=>"sauron", "id"=>"some-id"}
|
67
|
+
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
655
68
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
656
|
-
Parameters: {"
|
657
|
-
Completed
|
69
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
70
|
+
Completed 201 Created in 1ms (Views: 0.2ms)
|
658
71
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
659
72
|
Parameters: {"id"=>"group-id"}
|
660
|
-
Completed 400 Bad Request in
|
73
|
+
Completed 400 Bad Request in 1ms (Views: 0.4ms)
|
661
74
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
662
75
|
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
663
76
|
Completed 200 OK in 1ms (Views: 0.2ms)
|
664
77
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
665
78
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
666
|
-
Completed 400 Bad Request in 1ms (Views: 0.
|
79
|
+
Completed 400 Bad Request in 1ms (Views: 0.4ms)
|
667
80
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
668
81
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
669
|
-
Completed 400 Bad Request in 1ms (Views: 0.
|
82
|
+
Completed 400 Bad Request in 1ms (Views: 0.5ms)
|
670
83
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
671
84
|
Parameters: {"id"=>"group-id"}
|
672
85
|
Completed 204 No Content in 0ms
|
673
86
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
674
87
|
Parameters: {"id"=>"group-id"}
|
675
|
-
Completed 500 Internal Server Error in 0ms (Views: 0.
|
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)
|
88
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.1ms)
|
690
89
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
691
|
-
Completed 200 OK in
|
90
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
692
91
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
693
92
|
Filter chain halted as :authenticate rendered or redirected
|
694
93
|
Completed 401 Unauthorized in 2ms (Views: 0.2ms)
|
695
94
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
696
95
|
Filter chain halted as :authenticate rendered or redirected
|
697
|
-
Completed 401 Unauthorized in 0ms (Views: 0.
|
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)
|
96
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms)
|
703
97
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
704
98
|
Filter chain halted as :authenticate rendered or redirected
|
705
|
-
Completed 401 Unauthorized in 1ms (Views: 0.
|
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
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
720
|
-
Parameters: {"name"=>"Group"}
|
721
|
-
Completed 200 OK in 5ms (Views: 0.4ms)
|
722
|
-
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
723
|
-
Parameters: {"name"=>"Gaga"}
|
724
|
-
Completed 200 OK in 6ms (Views: 0.5ms)
|
725
|
-
Processing by ScimEngine::ResourcesController#show as SCIM
|
726
|
-
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)
|
99
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms)
|
777
100
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
778
101
|
Completed 200 OK in 0ms (Views: 0.2ms)
|
779
102
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
780
103
|
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
104
|
Completed 401 Unauthorized in 1ms (Views: 0.2ms)
|
788
105
|
Processing by ScimEngine::ApplicationController#index as SCIM
|
789
|
-
|
790
|
-
|
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)
|
106
|
+
Parameters: {"id"=>"10"}
|
107
|
+
Completed 404 Not Found in 4ms (Views: 1.2ms)
|
796
108
|
Processing by ScimEngine::ApplicationController#index as HTML
|
797
109
|
Filter chain halted as :require_scim rendered or redirected
|
798
|
-
Completed 406 Not Acceptable in
|
110
|
+
Completed 406 Not Acceptable in 1ms (Views: 0.3ms)
|
799
111
|
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
800
|
-
Completed 200 OK in
|
112
|
+
Completed 200 OK in 6ms (Views: 0.8ms)
|
801
113
|
Processing by ScimEngine::ResourceTypesController#index as SCIM
|
802
|
-
Completed 200 OK in
|
114
|
+
Completed 200 OK in 2ms (Views: 0.8ms)
|
803
115
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
804
116
|
Parameters: {"name"=>"User"}
|
805
|
-
Completed 200 OK in
|
117
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
806
118
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
807
119
|
Parameters: {"name"=>"Group"}
|
808
|
-
Completed 200 OK in 2ms (Views: 0.
|
120
|
+
Completed 200 OK in 2ms (Views: 0.6ms)
|
809
121
|
Processing by ScimEngine::ResourceTypesController#show as SCIM
|
810
122
|
Parameters: {"name"=>"Gaga"}
|
811
|
-
Completed 200 OK in
|
123
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
812
124
|
Processing by ScimEngine::ResourcesController#show as SCIM
|
813
125
|
Parameters: {"id"=>"10"}
|
814
|
-
Completed 200 OK in
|
126
|
+
Completed 200 OK in 5ms (Views: 0.8ms)
|
815
127
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
816
|
-
Completed 400 Bad Request in
|
128
|
+
Completed 400 Bad Request in 1ms (Views: 0.7ms)
|
817
129
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
818
130
|
Parameters: {"displayName"=>"Sauron biz"}
|
819
|
-
Completed 201 Created in 1ms (Views: 0.
|
131
|
+
Completed 201 Created in 1ms (Views: 0.5ms)
|
820
132
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
821
133
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
822
|
-
Completed 400 Bad Request in
|
134
|
+
Completed 400 Bad Request in 10ms (Views: 0.6ms)
|
823
135
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
824
136
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
825
|
-
Completed 400 Bad Request in
|
137
|
+
Completed 400 Bad Request in 2ms (Views: 0.8ms)
|
826
138
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
827
|
-
Parameters: {"
|
828
|
-
Completed 400 Bad Request in 0ms (Views: 0.
|
139
|
+
Parameters: {"displayName"=>"sauron", "id"=>"some-id"}
|
140
|
+
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
829
141
|
Processing by ScimEngine::ResourcesController#create as SCIM
|
830
|
-
Parameters: {"
|
831
|
-
Completed
|
142
|
+
Parameters: {"displayName"=>"sauron", "externalId"=>"some-id"}
|
143
|
+
Completed 201 Created in 1ms (Views: 0.3ms)
|
832
144
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
833
145
|
Parameters: {"id"=>"group-id"}
|
834
|
-
Completed 400 Bad Request in
|
146
|
+
Completed 400 Bad Request in 1ms (Views: 0.6ms)
|
835
147
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
836
148
|
Parameters: {"displayName"=>"sauron", "id"=>"group-id"}
|
837
149
|
Completed 200 OK in 1ms (Views: 0.2ms)
|
838
150
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
839
151
|
Parameters: {"name"=>{"email"=>"a@b.com"}, "id"=>"group-id"}
|
840
|
-
Completed 400 Bad Request in
|
152
|
+
Completed 400 Bad Request in 2ms (Views: 0.5ms)
|
841
153
|
Processing by ScimEngine::ResourcesController#update as SCIM
|
842
154
|
Parameters: {"displayName"=>"invalid name", "id"=>"group-id"}
|
843
|
-
Completed 400 Bad Request in
|
155
|
+
Completed 400 Bad Request in 2ms (Views: 0.6ms)
|
844
156
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
845
157
|
Parameters: {"id"=>"group-id"}
|
846
158
|
Completed 204 No Content in 0ms
|
847
159
|
Processing by ScimEngine::ResourcesController#destroy as SCIM
|
848
160
|
Parameters: {"id"=>"group-id"}
|
849
|
-
Completed 500 Internal Server Error in 0ms (Views: 0.
|
161
|
+
Completed 500 Internal Server Error in 0ms (Views: 0.2ms)
|
850
162
|
Processing by ScimEngine::SchemasController#index as SCIM
|
851
|
-
Completed 200 OK in
|
163
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
852
164
|
Processing by ScimEngine::SchemasController#index as SCIM
|
853
165
|
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:User"}
|
854
|
-
Completed 200 OK in
|
166
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
855
167
|
Processing by ScimEngine::SchemasController#index as SCIM
|
856
168
|
Parameters: {"name"=>"urn:ietf:params:scim:schemas:core:2.0:Group"}
|
857
|
-
Completed 200 OK in
|
169
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
858
170
|
Processing by ScimEngine::SchemasController#index as SCIM
|
859
171
|
Parameters: {"name"=>"License"}
|
860
|
-
Completed 200 OK in
|
172
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
861
173
|
Processing by ScimEngine::ServiceProviderConfigurationsController#show as SCIM
|
862
174
|
Parameters: {"id"=>"fake"}
|
863
|
-
Completed 200 OK in
|
175
|
+
Completed 200 OK in 4ms (Views: 0.5ms)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scim_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-04
|
11
|
+
date: 2019-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|