chatops-controller 4.0.1 → 4.1.0
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 +4 -4
- data/README.md +1 -1
- data/lib/chatops/controller.rb +1 -1
- data/lib/chatops/controller/test_case_helpers.rb +4 -2
- data/lib/chatops/controller/version.rb +1 -1
- data/spec/lib/chatops/controller_spec.rb +42 -0
- metadata +2 -4
- data/spec/dummy/log/test.log +0 -1743
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a69a75622b356133d08209c4167ef8a502be62bcbc45233ef57b5314b19166e
|
4
|
+
data.tar.gz: dcc515715c7eb5365239c4707a5b5d4aa234b4e3461ed330e15dcd1ac0f3e110
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5996e04a6df0ae903514816e35fc1278813a346c89f4261fe91f83fce7e890259d3496d87011d2fe8b9850b8415ccf22c4c4061c75881373ca9aba8d965dfe88
|
7
|
+
data.tar.gz: 76422b73d9cb4bd0f3a87a20262f0a600bf10f298c1c09a37601d6801c765077c744fe2c10cf3ab8eb21ff83f1adaa3fa11946dedc43360ff49c6c65535917f2
|
data/README.md
CHANGED
@@ -95,7 +95,7 @@ always be the login of the user typing the command, and `room_id` will be where
|
|
95
95
|
it was typed.
|
96
96
|
The optional `mention_slug` parameter will provide the name to use to refer to
|
97
97
|
the user when sending a message; this may or may not be the same thing as the
|
98
|
-
username, depending on the chat system being used.
|
98
|
+
username, depending on the chat system being used. The optional `message_id` parameter will provide a reference to the message that invoked the rpc.
|
99
99
|
|
100
100
|
You can return `jsonrpc_success` with a string to return text to chat. If you
|
101
101
|
have an input validation or other handle-able error, you can use
|
data/lib/chatops/controller.rb
CHANGED
@@ -57,7 +57,7 @@ module Chatops
|
|
57
57
|
|
58
58
|
@jsonrpc_params = params.delete(:params) if params.has_key? :params
|
59
59
|
|
60
|
-
self.params = params.permit(:action, :chatop, :controller, :id, :mention_slug, :method, :room_id, :user)
|
60
|
+
self.params = params.permit(:action, :chatop, :controller, :id, :mention_slug, :message_id, :method, :room_id, :user)
|
61
61
|
end
|
62
62
|
|
63
63
|
def jsonrpc_params
|
@@ -21,12 +21,14 @@ module Chatops::Controller::TestCaseHelpers
|
|
21
21
|
user = args.delete :user
|
22
22
|
room_id = args.delete :room_id
|
23
23
|
mention_slug = args.delete :mention_slug
|
24
|
+
message_id = args.delete :message_id
|
24
25
|
|
25
26
|
params = {
|
26
27
|
:params => args,
|
27
28
|
:room_id => room_id,
|
28
29
|
:user => user,
|
29
30
|
:mention_slug => mention_slug,
|
31
|
+
:message_id => message_id,
|
30
32
|
}
|
31
33
|
|
32
34
|
major_version = Rails.version.split('.')[0].to_i
|
@@ -37,7 +39,7 @@ module Chatops::Controller::TestCaseHelpers
|
|
37
39
|
end
|
38
40
|
end
|
39
41
|
|
40
|
-
def chat(message, user, room_id = "123")
|
42
|
+
def chat(message, user, room_id = "123", message_id = "456")
|
41
43
|
get :list
|
42
44
|
json_response = JSON.load(response.body)
|
43
45
|
matchers = json_response["methods"].map { |name, metadata|
|
@@ -59,7 +61,7 @@ module Chatops::Controller::TestCaseHelpers
|
|
59
61
|
matcher["params"].each do |param|
|
60
62
|
jsonrpc_params[param] ||= match_data[param.to_sym]
|
61
63
|
end
|
62
|
-
jsonrpc_params.merge!(user: user, room_id: room_id, mention_slug: user)
|
64
|
+
jsonrpc_params.merge!(user: user, room_id: room_id, mention_slug: user, message_id: message_id)
|
63
65
|
chatop matcher["name"].to_sym, jsonrpc_params
|
64
66
|
end
|
65
67
|
|
@@ -25,6 +25,13 @@ describe ActionController::Base, type: :controller do
|
|
25
25
|
jsonrpc_success "You just foo and bar like it just don't matter"
|
26
26
|
end
|
27
27
|
|
28
|
+
chatop :proxy_parameters,
|
29
|
+
/(?:proxy_parameters)/,
|
30
|
+
"proxy parameters back to test" do
|
31
|
+
response = { :params => params, :jsonrpc_params => jsonrpc_params }.to_json
|
32
|
+
jsonrpc_success response
|
33
|
+
end
|
34
|
+
|
28
35
|
skip_before_action :ensure_method_exists, only: :non_chatop_method
|
29
36
|
def non_chatop_method
|
30
37
|
render :plain => "Why would you have something thats not a chatop?"
|
@@ -228,6 +235,12 @@ describe ActionController::Base, type: :controller do
|
|
228
235
|
"regex" => /(?:how can i foo and bar all at once)?/.source,
|
229
236
|
"params" => [],
|
230
237
|
"path" => "foobar"
|
238
|
+
},
|
239
|
+
"proxy_parameters" => {
|
240
|
+
"help" => "proxy parameters back to test",
|
241
|
+
"regex" => /(?:proxy_parameters)/.source,
|
242
|
+
"params" => [],
|
243
|
+
"path" => "proxy_parameters"
|
231
244
|
}
|
232
245
|
},
|
233
246
|
"version" => "3"
|
@@ -293,6 +306,26 @@ describe ActionController::Base, type: :controller do
|
|
293
306
|
expect(response.status).to eq 200
|
294
307
|
end
|
295
308
|
|
309
|
+
it "passes all expected paramters" do
|
310
|
+
rails_flexible_post :execute_chatop, {
|
311
|
+
:chatop => "proxy_parameters",
|
312
|
+
:user => "foo",
|
313
|
+
:mention_slug => "mention_slug_here",
|
314
|
+
:message_id => "message_id_here",
|
315
|
+
:room_id => "#someroom",
|
316
|
+
:unknown_key => "few" # This should get ignored
|
317
|
+
}, {
|
318
|
+
"app" => "foo"
|
319
|
+
}
|
320
|
+
expect(json_response).to eq({
|
321
|
+
"jsonrpc" => "2.0",
|
322
|
+
"id" => nil,
|
323
|
+
"result" => "{\"params\":{\"action\":\"proxy_parameters\",\"chatop\":\"proxy_parameters\",\"controller\":\"anonymous\",\"mention_slug\":\"mention_slug_here\",\"message_id\":\"message_id_here\",\"room_id\":\"#someroom\",\"user\":\"foo\"},\"jsonrpc_params\":{\"app\":\"foo\"}}"
|
324
|
+
})
|
325
|
+
expect(response.status).to eq 200
|
326
|
+
end
|
327
|
+
|
328
|
+
|
296
329
|
it "uses typical controller fun like before_action" do
|
297
330
|
rails_flexible_post :execute_chatop, :chatop => "wcid", :user => "foo"
|
298
331
|
expect(json_response).to eq({
|
@@ -360,6 +393,15 @@ describe ActionController::Base, type: :controller do
|
|
360
393
|
expect(request.params["params"]["this-is-sparta"]).to eq "true"
|
361
394
|
end
|
362
395
|
|
396
|
+
it "sends along all the parameters" do
|
397
|
+
chat "where can i deploy foobar", "my_username", "room_id_5", "message_id_6"
|
398
|
+
expect(request.params["action"]).to eq "execute_chatop"
|
399
|
+
expect(request.params["chatop"]).to eq "wcid"
|
400
|
+
expect(request.params["user"]).to eq "my_username"
|
401
|
+
expect(request.params["room_id"]).to eq "room_id_5"
|
402
|
+
expect(request.params["message_id"]).to eq "message_id_6"
|
403
|
+
end
|
404
|
+
|
363
405
|
it "anchors regexes" do
|
364
406
|
expect {
|
365
407
|
chat "too bad that this message doesn't start with where can i deploy foobar", "bhuga"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chatops-controller
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0
|
4
|
+
version: 4.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Lavender
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2018-11-
|
13
|
+
date: 2018-11-13 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rails
|
@@ -102,7 +102,6 @@ files:
|
|
102
102
|
- spec/dummy/db/development.sqlite3
|
103
103
|
- spec/dummy/db/schema.rb
|
104
104
|
- spec/dummy/db/test.sqlite3
|
105
|
-
- spec/dummy/log/test.log
|
106
105
|
- spec/dummy/public/404.html
|
107
106
|
- spec/dummy/public/422.html
|
108
107
|
- spec/dummy/public/500.html
|
@@ -173,7 +172,6 @@ test_files:
|
|
173
172
|
- spec/dummy/db/schema.rb
|
174
173
|
- spec/dummy/db/test.sqlite3
|
175
174
|
- spec/dummy/db/development.sqlite3
|
176
|
-
- spec/dummy/log/test.log
|
177
175
|
- spec/dummy/README.rdoc
|
178
176
|
- spec/support/json_response.rb
|
179
177
|
- spec/lib/chatops/controller_spec.rb
|
data/spec/dummy/log/test.log
DELETED
@@ -1,1743 +0,0 @@
|
|
1
|
-
Processing by AnonymousController#list as HTML
|
2
|
-
Rendered text template (0.0ms)
|
3
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
4
|
-
Completed 403 Forbidden in 13ms (Views: 12.1ms)
|
5
|
-
Processing by AnonymousController#list as HTML
|
6
|
-
Completed 200 OK in 2ms (Views: 0.6ms)
|
7
|
-
Processing by AnonymousController#foobar as HTML
|
8
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
9
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
10
|
-
Processing by AnonymousController#list as HTML
|
11
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
12
|
-
Processing by AnonymousController#list as HTML
|
13
|
-
Completed 500 Internal Server Error in 0ms
|
14
|
-
Processing by AnonymousController#list as HTML
|
15
|
-
Completed 500 Internal Server Error in 0ms
|
16
|
-
Processing by AnonymousController#list as HTML
|
17
|
-
Rendered text template (0.0ms)
|
18
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
19
|
-
Completed 403 Forbidden in 1ms (Views: 0.5ms)
|
20
|
-
Processing by AnonymousController#list as HTML
|
21
|
-
Rendered text template (0.0ms)
|
22
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
23
|
-
Completed 403 Forbidden in 1ms (Views: 0.2ms)
|
24
|
-
Processing by AnonymousController#list as HTML
|
25
|
-
Rendered text template (0.0ms)
|
26
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
27
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
28
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
29
|
-
Rendered text template (0.0ms)
|
30
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
31
|
-
Processing by AnonymousController#list as HTML
|
32
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
33
|
-
Processing by AnonymousController#foobar as HTML
|
34
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
35
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
36
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
37
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
38
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
39
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
40
|
-
Processing by AnonymousController#foobar as HTML
|
41
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
42
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
43
|
-
Processing by AnonymousController#wcid as HTML
|
44
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
45
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
46
|
-
Processing by AnonymousController#wcid as HTML
|
47
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
48
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
49
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
50
|
-
Processing by AnonymousController#wcid as HTML
|
51
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
52
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
53
|
-
Processing by AnonymousController#wcid as HTML
|
54
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
55
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
56
|
-
Processing by AnonymousController#wcid as HTML
|
57
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
58
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
59
|
-
Processing by AnonymousController#list as HTML
|
60
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
61
|
-
Processing by AnonymousController#wcid as HTML
|
62
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
63
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
64
|
-
Processing by AnonymousController#list as HTML
|
65
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
66
|
-
Processing by AnonymousController#wcid as HTML
|
67
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
68
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
69
|
-
Processing by AnonymousController#list as HTML
|
70
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
71
|
-
Processing by AnonymousController#wcid as HTML
|
72
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
73
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
74
|
-
Processing by AnonymousController#list as HTML
|
75
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
76
|
-
Processing by AnonymousController#list as HTML
|
77
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
78
|
-
Processing by AnonymousController#wcid as HTML
|
79
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
80
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
81
|
-
Processing by AnonymousController#list as HTML
|
82
|
-
Rendering text template
|
83
|
-
Rendered text template (0.0ms)
|
84
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
85
|
-
Completed 403 Forbidden in 4ms (Views: 3.7ms)
|
86
|
-
Processing by AnonymousController#list as HTML
|
87
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
88
|
-
Processing by AnonymousController#foobar as HTML
|
89
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
90
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
91
|
-
Processing by AnonymousController#list as HTML
|
92
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
93
|
-
Processing by AnonymousController#list as HTML
|
94
|
-
Completed 500 Internal Server Error in 0ms
|
95
|
-
Processing by AnonymousController#list as HTML
|
96
|
-
Completed 500 Internal Server Error in 1ms
|
97
|
-
Processing by AnonymousController#list as HTML
|
98
|
-
Rendering text template
|
99
|
-
Rendered text template (0.0ms)
|
100
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
101
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
102
|
-
Processing by AnonymousController#list as HTML
|
103
|
-
Rendering text template
|
104
|
-
Rendered text template (0.0ms)
|
105
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
106
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
107
|
-
Processing by AnonymousController#list as HTML
|
108
|
-
Rendering text template
|
109
|
-
Rendered text template (0.0ms)
|
110
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
111
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
112
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
113
|
-
Rendering text template
|
114
|
-
Rendered text template (0.0ms)
|
115
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
116
|
-
Processing by AnonymousController#list as HTML
|
117
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
118
|
-
Processing by AnonymousController#foobar as HTML
|
119
|
-
Parameters: {"chatop"=>"foobar"}
|
120
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
121
|
-
Completed 400 Bad Request in 1ms (Views: 0.4ms)
|
122
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
123
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
124
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
125
|
-
Processing by AnonymousController#foobar as HTML
|
126
|
-
Parameters: {"user"=>"foo", "chatop"=>"foobar"}
|
127
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
128
|
-
Processing by AnonymousController#wcid as HTML
|
129
|
-
Parameters: {"params"=>{"app"=>"foo"}, "user"=>"foo", "chatop"=>"wcid"}
|
130
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
131
|
-
Processing by AnonymousController#wcid as HTML
|
132
|
-
Parameters: {"user"=>"foo", "chatop"=>"wcid"}
|
133
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
134
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
135
|
-
Processing by AnonymousController#wcid as HTML
|
136
|
-
Parameters: {"params"=>{"app"=>"nope"}, "user"=>"foo", "chatop"=>"wcid"}
|
137
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
138
|
-
Processing by AnonymousController#wcid as HTML
|
139
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"foo"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
140
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
141
|
-
Processing by AnonymousController#wcid as HTML
|
142
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"nope"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
143
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
144
|
-
Processing by AnonymousController#list as HTML
|
145
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
146
|
-
Processing by AnonymousController#wcid as HTML
|
147
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
148
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
149
|
-
Processing by AnonymousController#list as HTML
|
150
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
151
|
-
Processing by AnonymousController#wcid as HTML
|
152
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "fruit"=>"apple", "vegetable"=>"green celery"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
153
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
154
|
-
Processing by AnonymousController#list as HTML
|
155
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
156
|
-
Processing by AnonymousController#wcid as HTML
|
157
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
158
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
159
|
-
Processing by AnonymousController#list as HTML
|
160
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
161
|
-
Processing by AnonymousController#list as HTML
|
162
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
163
|
-
Processing by AnonymousController#wcid as HTML
|
164
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
165
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
166
|
-
Processing by AnonymousController#list as HTML
|
167
|
-
Rendering text template
|
168
|
-
Rendered text template (0.0ms)
|
169
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
170
|
-
Completed 403 Forbidden in 6ms (Views: 5.7ms)
|
171
|
-
Processing by AnonymousController#list as HTML
|
172
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
173
|
-
Processing by AnonymousController#foobar as HTML
|
174
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
175
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
176
|
-
Processing by AnonymousController#list as HTML
|
177
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
178
|
-
Processing by AnonymousController#list as HTML
|
179
|
-
Completed 500 Internal Server Error in 0ms
|
180
|
-
Processing by AnonymousController#list as HTML
|
181
|
-
Completed 500 Internal Server Error in 0ms
|
182
|
-
Processing by AnonymousController#list as HTML
|
183
|
-
Rendering text template
|
184
|
-
Rendered text template (0.0ms)
|
185
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
186
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
187
|
-
Processing by AnonymousController#list as HTML
|
188
|
-
Rendering text template
|
189
|
-
Rendered text template (0.0ms)
|
190
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
191
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
192
|
-
Processing by AnonymousController#list as HTML
|
193
|
-
Rendering text template
|
194
|
-
Rendered text template (0.0ms)
|
195
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
196
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
197
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
198
|
-
Rendering text template
|
199
|
-
Rendered text template (0.0ms)
|
200
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
201
|
-
Processing by AnonymousController#list as HTML
|
202
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
203
|
-
Processing by AnonymousController#foobar as HTML
|
204
|
-
Parameters: {"chatop"=>"foobar"}
|
205
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
206
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
207
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
208
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
209
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
210
|
-
Processing by AnonymousController#foobar as HTML
|
211
|
-
Parameters: {"user"=>"foo", "chatop"=>"foobar"}
|
212
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
213
|
-
Processing by AnonymousController#wcid as HTML
|
214
|
-
Parameters: {"params"=>{"app"=>"foo"}, "user"=>"foo", "chatop"=>"wcid"}
|
215
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
216
|
-
Processing by AnonymousController#wcid as HTML
|
217
|
-
Parameters: {"user"=>"foo", "chatop"=>"wcid"}
|
218
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
219
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
220
|
-
Processing by AnonymousController#wcid as HTML
|
221
|
-
Parameters: {"params"=>{"app"=>"nope"}, "user"=>"foo", "chatop"=>"wcid"}
|
222
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
223
|
-
Processing by AnonymousController#wcid as HTML
|
224
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"foo"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
225
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
226
|
-
Processing by AnonymousController#wcid as HTML
|
227
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"nope"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
228
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
229
|
-
Processing by AnonymousController#list as HTML
|
230
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
231
|
-
Processing by AnonymousController#wcid as HTML
|
232
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
233
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
234
|
-
Processing by AnonymousController#list as HTML
|
235
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
236
|
-
Processing by AnonymousController#wcid as HTML
|
237
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "fruit"=>"apple", "vegetable"=>"green celery"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
238
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
239
|
-
Processing by AnonymousController#list as HTML
|
240
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
241
|
-
Processing by AnonymousController#wcid as HTML
|
242
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
243
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
244
|
-
Processing by AnonymousController#list as HTML
|
245
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
246
|
-
Processing by AnonymousController#list as HTML
|
247
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
248
|
-
Processing by AnonymousController#wcid as HTML
|
249
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
250
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
251
|
-
Processing by AnonymousController#list as HTML
|
252
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
253
|
-
Processing by AnonymousController#wcid as HTML
|
254
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
255
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
256
|
-
Processing by AnonymousController#list as HTML
|
257
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
258
|
-
Processing by AnonymousController#wcid as HTML
|
259
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
260
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
261
|
-
Processing by AnonymousController#list as HTML
|
262
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
263
|
-
Processing by AnonymousController#wcid as HTML
|
264
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
265
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
266
|
-
Processing by AnonymousController#list as HTML
|
267
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
268
|
-
Processing by AnonymousController#wcid as HTML
|
269
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
270
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
271
|
-
Processing by AnonymousController#list as HTML
|
272
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga"}
|
273
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
274
|
-
Processing by AnonymousController#wcid as HTML
|
275
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
276
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
277
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
278
|
-
Processing by AnonymousController#list as HTML
|
279
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
280
|
-
Processing by AnonymousController#wcid as HTML
|
281
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
282
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
283
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
284
|
-
Processing by AnonymousController#list as HTML
|
285
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
286
|
-
Processing by AnonymousController#wcid as HTML
|
287
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
288
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
289
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
290
|
-
Processing by AnonymousController#list as HTML
|
291
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
292
|
-
Processing by AnonymousController#wcid as HTML
|
293
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
294
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
295
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
296
|
-
Processing by AnonymousController#list as HTML
|
297
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
298
|
-
Processing by AnonymousController#wcid as HTML
|
299
|
-
Parameters: {"params"=>{"app"=>nil}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
300
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
301
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
302
|
-
Processing by AnonymousController#list as HTML
|
303
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
304
|
-
Processing by AnonymousController#wcid as HTML
|
305
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
306
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
307
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
308
|
-
Processing by AnonymousController#list as HTML
|
309
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
310
|
-
Processing by AnonymousController#wcid as HTML
|
311
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
312
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
313
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
314
|
-
Processing by AnonymousController#list as HTML
|
315
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
316
|
-
Processing by AnonymousController#wcid as HTML
|
317
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
318
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
319
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
320
|
-
Processing by AnonymousController#list as HTML
|
321
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
322
|
-
Processing by AnonymousController#wcid as HTML
|
323
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
324
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
325
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
326
|
-
Processing by AnonymousController#list as HTML
|
327
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
328
|
-
Processing by AnonymousController#wcid as HTML
|
329
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
330
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
331
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
332
|
-
Processing by AnonymousController#list as HTML
|
333
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
334
|
-
Processing by AnonymousController#wcid as HTML
|
335
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
336
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
337
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
338
|
-
Processing by AnonymousController#list as HTML
|
339
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
340
|
-
Processing by AnonymousController#wcid as HTML
|
341
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
342
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
343
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
344
|
-
Processing by AnonymousController#list as HTML
|
345
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
346
|
-
Processing by AnonymousController#wcid as HTML
|
347
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
348
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
349
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
350
|
-
Processing by AnonymousController#list as HTML
|
351
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
352
|
-
Processing by AnonymousController#wcid as HTML
|
353
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
354
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
355
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
356
|
-
Processing by AnonymousController#list as HTML
|
357
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
358
|
-
Processing by AnonymousController#wcid as HTML
|
359
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
360
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
361
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
362
|
-
Processing by AnonymousController#list as HTML
|
363
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
364
|
-
Processing by AnonymousController#wcid as HTML
|
365
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
366
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
367
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
368
|
-
Processing by AnonymousController#list as HTML
|
369
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
370
|
-
Processing by AnonymousController#wcid as HTML
|
371
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
372
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
373
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
374
|
-
Processing by AnonymousController#list as HTML
|
375
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
376
|
-
Processing by AnonymousController#wcid as HTML
|
377
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
378
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
379
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
380
|
-
Processing by AnonymousController#list as HTML
|
381
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
382
|
-
Processing by AnonymousController#wcid as HTML
|
383
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
384
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
385
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
386
|
-
Processing by AnonymousController#list as HTML
|
387
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
388
|
-
Processing by AnonymousController#wcid as HTML
|
389
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
390
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
391
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
392
|
-
Processing by AnonymousController#list as HTML
|
393
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
394
|
-
Processing by AnonymousController#wcid as HTML
|
395
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
396
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
397
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
398
|
-
Processing by AnonymousController#list as HTML
|
399
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
400
|
-
Processing by AnonymousController#wcid as HTML
|
401
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
402
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
403
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
404
|
-
Processing by AnonymousController#list as HTML
|
405
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
406
|
-
Processing by AnonymousController#wcid as HTML
|
407
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
408
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
409
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
410
|
-
Processing by AnonymousController#list as HTML
|
411
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
412
|
-
Processing by AnonymousController#wcid as HTML
|
413
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
414
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
415
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
416
|
-
Processing by AnonymousController#list as HTML
|
417
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
418
|
-
Processing by AnonymousController#wcid as HTML
|
419
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
420
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
421
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
422
|
-
Processing by AnonymousController#list as HTML
|
423
|
-
Rendering text template
|
424
|
-
Rendered text template (0.0ms)
|
425
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
426
|
-
Completed 403 Forbidden in 5ms (Views: 4.0ms)
|
427
|
-
Processing by AnonymousController#list as HTML
|
428
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
429
|
-
Processing by AnonymousController#foobar as HTML
|
430
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
431
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
432
|
-
Processing by AnonymousController#list as HTML
|
433
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
434
|
-
Processing by AnonymousController#list as HTML
|
435
|
-
Completed 500 Internal Server Error in 0ms
|
436
|
-
Processing by AnonymousController#list as HTML
|
437
|
-
Completed 500 Internal Server Error in 0ms
|
438
|
-
Processing by AnonymousController#list as HTML
|
439
|
-
Rendering text template
|
440
|
-
Rendered text template (0.0ms)
|
441
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
442
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
443
|
-
Processing by AnonymousController#list as HTML
|
444
|
-
Rendering text template
|
445
|
-
Rendered text template (0.0ms)
|
446
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
447
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
448
|
-
Processing by AnonymousController#list as HTML
|
449
|
-
Rendering text template
|
450
|
-
Rendered text template (0.0ms)
|
451
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
452
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
453
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
454
|
-
Rendering text template
|
455
|
-
Rendered text template (0.0ms)
|
456
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
457
|
-
Processing by AnonymousController#list as HTML
|
458
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
459
|
-
Processing by AnonymousController#foobar as HTML
|
460
|
-
Parameters: {"chatop"=>"foobar"}
|
461
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
462
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
463
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
464
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
465
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
466
|
-
Processing by AnonymousController#foobar as HTML
|
467
|
-
Parameters: {"user"=>"foo", "chatop"=>"foobar"}
|
468
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
469
|
-
Processing by AnonymousController#wcid as HTML
|
470
|
-
Parameters: {"params"=>{"app"=>"foo"}, "user"=>"foo", "chatop"=>"wcid"}
|
471
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
472
|
-
Processing by AnonymousController#wcid as HTML
|
473
|
-
Parameters: {"user"=>"foo", "chatop"=>"wcid"}
|
474
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
475
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
476
|
-
Processing by AnonymousController#wcid as HTML
|
477
|
-
Parameters: {"params"=>{"app"=>"nope"}, "user"=>"foo", "chatop"=>"wcid"}
|
478
|
-
Completed 400 Bad Request in 1ms (Views: 0.4ms)
|
479
|
-
Processing by AnonymousController#wcid as HTML
|
480
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"foo"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
481
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
482
|
-
Processing by AnonymousController#wcid as HTML
|
483
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"nope"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
484
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
485
|
-
Processing by AnonymousController#list as HTML
|
486
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
487
|
-
Processing by AnonymousController#wcid as HTML
|
488
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
489
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
490
|
-
Processing by AnonymousController#list as HTML
|
491
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
492
|
-
Processing by AnonymousController#wcid as HTML
|
493
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "fruit"=>"apple", "vegetable"=>"green celery"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
494
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
495
|
-
Processing by AnonymousController#list as HTML
|
496
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
497
|
-
Processing by AnonymousController#wcid as HTML
|
498
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
499
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
500
|
-
Processing by AnonymousController#list as HTML
|
501
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
502
|
-
Processing by AnonymousController#list as HTML
|
503
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
504
|
-
Processing by AnonymousController#wcid as HTML
|
505
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
506
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
507
|
-
Processing by AnonymousController#list as HTML
|
508
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
509
|
-
Processing by AnonymousController#wcid as HTML
|
510
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
511
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
512
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
513
|
-
Processing by AnonymousController#list as HTML
|
514
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
515
|
-
Processing by AnonymousController#wcid as HTML
|
516
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
517
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
518
|
-
Processing by AnonymousController#list as HTML
|
519
|
-
Rendering text template
|
520
|
-
Rendered text template (0.0ms)
|
521
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
522
|
-
Completed 403 Forbidden in 4ms (Views: 3.8ms)
|
523
|
-
Processing by AnonymousController#list as HTML
|
524
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
525
|
-
Processing by AnonymousController#foobar as HTML
|
526
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
527
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
528
|
-
Processing by AnonymousController#list as HTML
|
529
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
530
|
-
Processing by AnonymousController#list as HTML
|
531
|
-
Completed 500 Internal Server Error in 0ms
|
532
|
-
Processing by AnonymousController#list as HTML
|
533
|
-
Completed 500 Internal Server Error in 0ms
|
534
|
-
Processing by AnonymousController#list as HTML
|
535
|
-
Rendering text template
|
536
|
-
Rendered text template (0.0ms)
|
537
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
538
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
539
|
-
Processing by AnonymousController#list as HTML
|
540
|
-
Rendering text template
|
541
|
-
Rendered text template (0.0ms)
|
542
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
543
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
544
|
-
Processing by AnonymousController#list as HTML
|
545
|
-
Rendering text template
|
546
|
-
Rendered text template (0.0ms)
|
547
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
548
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
549
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
550
|
-
Rendering text template
|
551
|
-
Rendered text template (0.0ms)
|
552
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
553
|
-
Processing by AnonymousController#list as HTML
|
554
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
555
|
-
Processing by AnonymousController#foobar as HTML
|
556
|
-
Parameters: {"chatop"=>"foobar"}
|
557
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
558
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
559
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
560
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
561
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
562
|
-
Processing by AnonymousController#foobar as HTML
|
563
|
-
Parameters: {"user"=>"foo", "chatop"=>"foobar"}
|
564
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
565
|
-
Processing by AnonymousController#wcid as HTML
|
566
|
-
Parameters: {"params"=>{"app"=>"foo"}, "user"=>"foo", "chatop"=>"wcid"}
|
567
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
568
|
-
Processing by AnonymousController#wcid as HTML
|
569
|
-
Parameters: {"user"=>"foo", "chatop"=>"wcid"}
|
570
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
571
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
572
|
-
Processing by AnonymousController#wcid as HTML
|
573
|
-
Parameters: {"params"=>{"app"=>"nope"}, "user"=>"foo", "chatop"=>"wcid"}
|
574
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
575
|
-
Processing by AnonymousController#wcid as HTML
|
576
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"foo"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
577
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
578
|
-
Processing by AnonymousController#wcid as HTML
|
579
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"nope"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
580
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
581
|
-
Processing by AnonymousController#list as HTML
|
582
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
583
|
-
Processing by AnonymousController#wcid as HTML
|
584
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
585
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
586
|
-
Processing by AnonymousController#list as HTML
|
587
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
588
|
-
Processing by AnonymousController#wcid as HTML
|
589
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "fruit"=>"apple", "vegetable"=>"green celery"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
590
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
591
|
-
Processing by AnonymousController#list as HTML
|
592
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
593
|
-
Processing by AnonymousController#wcid as HTML
|
594
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
595
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
596
|
-
Processing by AnonymousController#list as HTML
|
597
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
598
|
-
Processing by AnonymousController#list as HTML
|
599
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
600
|
-
Processing by AnonymousController#wcid as HTML
|
601
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
602
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
603
|
-
Processing by AnonymousController#list as HTML
|
604
|
-
Rendering text template
|
605
|
-
Rendered text template (0.0ms)
|
606
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
607
|
-
Completed 403 Forbidden in 5ms (Views: 3.9ms)
|
608
|
-
Processing by AnonymousController#list as HTML
|
609
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
610
|
-
Processing by AnonymousController#foobar as HTML
|
611
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
612
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
613
|
-
Processing by AnonymousController#list as HTML
|
614
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
615
|
-
Processing by AnonymousController#list as HTML
|
616
|
-
Completed 500 Internal Server Error in 0ms
|
617
|
-
Processing by AnonymousController#list as HTML
|
618
|
-
Completed 500 Internal Server Error in 0ms
|
619
|
-
Processing by AnonymousController#list as HTML
|
620
|
-
Rendering text template
|
621
|
-
Rendered text template (0.0ms)
|
622
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
623
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
624
|
-
Processing by AnonymousController#list as HTML
|
625
|
-
Rendering text template
|
626
|
-
Rendered text template (0.0ms)
|
627
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
628
|
-
Completed 403 Forbidden in 1ms (Views: 0.5ms)
|
629
|
-
Processing by AnonymousController#list as HTML
|
630
|
-
Rendering text template
|
631
|
-
Rendered text template (0.0ms)
|
632
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
633
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
634
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
635
|
-
Rendering text template
|
636
|
-
Rendered text template (0.0ms)
|
637
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
638
|
-
Processing by AnonymousController#list as HTML
|
639
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
640
|
-
Processing by AnonymousController#foobar as HTML
|
641
|
-
Parameters: {"chatop"=>"foobar"}
|
642
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
643
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
644
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
645
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
646
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
647
|
-
Processing by AnonymousController#foobar as HTML
|
648
|
-
Parameters: {"user"=>"foo", "chatop"=>"foobar"}
|
649
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
650
|
-
Processing by AnonymousController#wcid as HTML
|
651
|
-
Parameters: {"params"=>{"app"=>"foo"}, "user"=>"foo", "chatop"=>"wcid"}
|
652
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
653
|
-
Processing by AnonymousController#wcid as HTML
|
654
|
-
Parameters: {"user"=>"foo", "chatop"=>"wcid"}
|
655
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
656
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
657
|
-
Processing by AnonymousController#wcid as HTML
|
658
|
-
Parameters: {"params"=>{"app"=>"nope"}, "user"=>"foo", "chatop"=>"wcid"}
|
659
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
660
|
-
Processing by AnonymousController#wcid as HTML
|
661
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"foo"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
662
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
663
|
-
Processing by AnonymousController#wcid as HTML
|
664
|
-
Parameters: {"mention_slug"=>"", "params"=>{"app"=>"nope"}, "room_id"=>"", "user"=>"foo", "chatop"=>"wcid"}
|
665
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
666
|
-
Processing by AnonymousController#list as HTML
|
667
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
668
|
-
Processing by AnonymousController#wcid as HTML
|
669
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
670
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
671
|
-
Processing by AnonymousController#list as HTML
|
672
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
673
|
-
Processing by AnonymousController#wcid as HTML
|
674
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "fruit"=>"apple", "vegetable"=>"green celery"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
675
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
676
|
-
Processing by AnonymousController#list as HTML
|
677
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
678
|
-
Processing by AnonymousController#wcid as HTML
|
679
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
680
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
681
|
-
Processing by AnonymousController#list as HTML
|
682
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
683
|
-
Processing by AnonymousController#list as HTML
|
684
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
685
|
-
Processing by AnonymousController#wcid as HTML
|
686
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>"foobar", "this-is-sparta"=>"true"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
687
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
688
|
-
Processing by AnonymousController#list as HTML
|
689
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
690
|
-
Processing by AnonymousController#wcid as HTML
|
691
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
692
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
693
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
694
|
-
Processing by AnonymousController#list as HTML
|
695
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
696
|
-
Processing by AnonymousController#wcid as HTML
|
697
|
-
Parameters: {"mention_slug"=>"bhuga", "params"=>{"app"=>""}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
698
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
699
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
700
|
-
Processing by AnonymousController#list as HTML
|
701
|
-
Rendered text template (0.0ms)
|
702
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
703
|
-
Completed 403 Forbidden in 6ms (Views: 5.3ms)
|
704
|
-
Processing by AnonymousController#list as HTML
|
705
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
706
|
-
Processing by AnonymousController#foobar as HTML
|
707
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
708
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
709
|
-
Processing by AnonymousController#list as HTML
|
710
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
711
|
-
Processing by AnonymousController#list as HTML
|
712
|
-
Completed 500 Internal Server Error in 1ms
|
713
|
-
Processing by AnonymousController#list as HTML
|
714
|
-
Completed 500 Internal Server Error in 1ms
|
715
|
-
Processing by AnonymousController#list as HTML
|
716
|
-
Rendered text template (0.0ms)
|
717
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
718
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
719
|
-
Processing by AnonymousController#list as HTML
|
720
|
-
Rendered text template (0.0ms)
|
721
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
722
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
723
|
-
Processing by AnonymousController#list as HTML
|
724
|
-
Rendered text template (0.0ms)
|
725
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
726
|
-
Completed 403 Forbidden in 2ms (Views: 0.3ms)
|
727
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
728
|
-
Rendered text template (0.0ms)
|
729
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
730
|
-
Processing by AnonymousController#list as HTML
|
731
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
732
|
-
Processing by AnonymousController#foobar as HTML
|
733
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
734
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
735
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
736
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
737
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
738
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
739
|
-
Processing by AnonymousController#foobar as HTML
|
740
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
741
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
742
|
-
Processing by AnonymousController#wcid as HTML
|
743
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
744
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
745
|
-
Processing by AnonymousController#wcid as HTML
|
746
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
747
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
748
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
749
|
-
Processing by AnonymousController#wcid as HTML
|
750
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
751
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
752
|
-
Processing by AnonymousController#wcid as HTML
|
753
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
754
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
755
|
-
Processing by AnonymousController#wcid as HTML
|
756
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
757
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
758
|
-
Processing by AnonymousController#list as HTML
|
759
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
760
|
-
Processing by AnonymousController#wcid as HTML
|
761
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
762
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
763
|
-
Processing by AnonymousController#list as HTML
|
764
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
765
|
-
Processing by AnonymousController#wcid as HTML
|
766
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
767
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
768
|
-
Processing by AnonymousController#list as HTML
|
769
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
770
|
-
Processing by AnonymousController#wcid as HTML
|
771
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
772
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
773
|
-
Processing by AnonymousController#list as HTML
|
774
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
775
|
-
Processing by AnonymousController#list as HTML
|
776
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
777
|
-
Processing by AnonymousController#wcid as HTML
|
778
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
779
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
780
|
-
Processing by AnonymousController#list as HTML
|
781
|
-
Rendered text template (0.0ms)
|
782
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
783
|
-
Completed 403 Forbidden in 2ms (Views: 2.0ms)
|
784
|
-
Processing by AnonymousController#list as HTML
|
785
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
786
|
-
Processing by AnonymousController#foobar as HTML
|
787
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
788
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
789
|
-
Processing by AnonymousController#list as HTML
|
790
|
-
Completed 200 OK in 2ms (Views: 0.5ms)
|
791
|
-
Processing by AnonymousController#list as HTML
|
792
|
-
Completed 500 Internal Server Error in 0ms
|
793
|
-
Processing by AnonymousController#list as HTML
|
794
|
-
Completed 500 Internal Server Error in 0ms
|
795
|
-
Processing by AnonymousController#list as HTML
|
796
|
-
Rendered text template (0.0ms)
|
797
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
798
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
799
|
-
Processing by AnonymousController#list as HTML
|
800
|
-
Rendered text template (0.0ms)
|
801
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
802
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
803
|
-
Processing by AnonymousController#list as HTML
|
804
|
-
Rendered text template (0.1ms)
|
805
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
806
|
-
Completed 403 Forbidden in 1ms (Views: 0.5ms)
|
807
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
808
|
-
Rendered text template (0.0ms)
|
809
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
810
|
-
Processing by AnonymousController#list as HTML
|
811
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
812
|
-
Processing by AnonymousController#foobar as HTML
|
813
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
814
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
815
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
816
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
817
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
818
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
819
|
-
Processing by AnonymousController#foobar as HTML
|
820
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
821
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
822
|
-
Processing by AnonymousController#wcid as HTML
|
823
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
824
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
825
|
-
Processing by AnonymousController#wcid as HTML
|
826
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
827
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
828
|
-
Completed 400 Bad Request in 1ms (Views: 0.5ms)
|
829
|
-
Processing by AnonymousController#wcid as HTML
|
830
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
831
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
832
|
-
Processing by AnonymousController#wcid as HTML
|
833
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
834
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
835
|
-
Processing by AnonymousController#wcid as HTML
|
836
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
837
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
838
|
-
Processing by AnonymousController#list as HTML
|
839
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
840
|
-
Processing by AnonymousController#wcid as HTML
|
841
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
842
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
843
|
-
Processing by AnonymousController#list as HTML
|
844
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
845
|
-
Processing by AnonymousController#wcid as HTML
|
846
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
847
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
848
|
-
Processing by AnonymousController#list as HTML
|
849
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
850
|
-
Processing by AnonymousController#wcid as HTML
|
851
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
852
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
853
|
-
Processing by AnonymousController#list as HTML
|
854
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
855
|
-
Processing by AnonymousController#list as HTML
|
856
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
857
|
-
Processing by AnonymousController#wcid as HTML
|
858
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
859
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
860
|
-
Processing by AnonymousController#list as HTML
|
861
|
-
Rendered text template (0.0ms)
|
862
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
863
|
-
Completed 403 Forbidden in 11ms (Views: 9.9ms)
|
864
|
-
Processing by AnonymousController#list as HTML
|
865
|
-
Completed 200 OK in 2ms (Views: 0.7ms)
|
866
|
-
Processing by AnonymousController#foobar as HTML
|
867
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
868
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
869
|
-
Processing by AnonymousController#list as HTML
|
870
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
871
|
-
Processing by AnonymousController#list as HTML
|
872
|
-
Completed 500 Internal Server Error in 0ms
|
873
|
-
Processing by AnonymousController#list as HTML
|
874
|
-
Completed 500 Internal Server Error in 0ms
|
875
|
-
Processing by AnonymousController#list as HTML
|
876
|
-
Rendered text template (0.0ms)
|
877
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
878
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
879
|
-
Processing by AnonymousController#list as HTML
|
880
|
-
Rendered text template (0.0ms)
|
881
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
882
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
883
|
-
Processing by AnonymousController#list as HTML
|
884
|
-
Rendered text template (0.0ms)
|
885
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
886
|
-
Completed 403 Forbidden in 1ms (Views: 0.6ms)
|
887
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
888
|
-
Rendered text template (0.0ms)
|
889
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
890
|
-
Processing by AnonymousController#list as HTML
|
891
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
892
|
-
Processing by AnonymousController#foobar as HTML
|
893
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
894
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
895
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
896
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
897
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
898
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
899
|
-
Processing by AnonymousController#foobar as HTML
|
900
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
901
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
902
|
-
Processing by AnonymousController#wcid as HTML
|
903
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
904
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
905
|
-
Processing by AnonymousController#wcid as HTML
|
906
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
907
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
908
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
909
|
-
Processing by AnonymousController#wcid as HTML
|
910
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
911
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
912
|
-
Processing by AnonymousController#wcid as HTML
|
913
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
914
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
915
|
-
Processing by AnonymousController#wcid as HTML
|
916
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
917
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
918
|
-
Processing by AnonymousController#list as HTML
|
919
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
920
|
-
Processing by AnonymousController#wcid as HTML
|
921
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
922
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
923
|
-
Processing by AnonymousController#list as HTML
|
924
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
925
|
-
Processing by AnonymousController#wcid as HTML
|
926
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
927
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
928
|
-
Processing by AnonymousController#list as HTML
|
929
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
930
|
-
Processing by AnonymousController#wcid as HTML
|
931
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
932
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
933
|
-
Processing by AnonymousController#list as HTML
|
934
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
935
|
-
Processing by AnonymousController#list as HTML
|
936
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
937
|
-
Processing by AnonymousController#wcid as HTML
|
938
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
939
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
940
|
-
Processing by AnonymousController#list as HTML
|
941
|
-
Rendered text template (0.0ms)
|
942
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
943
|
-
Completed 403 Forbidden in 2ms (Views: 1.7ms)
|
944
|
-
Processing by AnonymousController#list as HTML
|
945
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
946
|
-
Processing by AnonymousController#foobar as HTML
|
947
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
948
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
949
|
-
Processing by AnonymousController#list as HTML
|
950
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
951
|
-
Processing by AnonymousController#list as HTML
|
952
|
-
Completed 500 Internal Server Error in 0ms
|
953
|
-
Processing by AnonymousController#list as HTML
|
954
|
-
Completed 500 Internal Server Error in 0ms
|
955
|
-
Processing by AnonymousController#list as HTML
|
956
|
-
Rendered text template (0.0ms)
|
957
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
958
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
959
|
-
Processing by AnonymousController#list as HTML
|
960
|
-
Rendered text template (0.0ms)
|
961
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
962
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
963
|
-
Processing by AnonymousController#list as HTML
|
964
|
-
Rendered text template (0.0ms)
|
965
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
966
|
-
Completed 403 Forbidden in 1ms (Views: 0.2ms)
|
967
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
968
|
-
Rendered text template (0.0ms)
|
969
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
970
|
-
Processing by AnonymousController#list as HTML
|
971
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
972
|
-
Processing by AnonymousController#foobar as HTML
|
973
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
974
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
975
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
976
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
977
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
978
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
979
|
-
Processing by AnonymousController#foobar as HTML
|
980
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
981
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
982
|
-
Processing by AnonymousController#wcid as HTML
|
983
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
984
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
985
|
-
Processing by AnonymousController#wcid as HTML
|
986
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
987
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
988
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
989
|
-
Processing by AnonymousController#wcid as HTML
|
990
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
991
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
992
|
-
Processing by AnonymousController#wcid as HTML
|
993
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
994
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
995
|
-
Processing by AnonymousController#wcid as HTML
|
996
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
997
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
998
|
-
Processing by AnonymousController#list as HTML
|
999
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1000
|
-
Processing by AnonymousController#wcid as HTML
|
1001
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1002
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1003
|
-
Processing by AnonymousController#list as HTML
|
1004
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1005
|
-
Processing by AnonymousController#wcid as HTML
|
1006
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1007
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1008
|
-
Processing by AnonymousController#list as HTML
|
1009
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1010
|
-
Processing by AnonymousController#wcid as HTML
|
1011
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1012
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1013
|
-
Processing by AnonymousController#list as HTML
|
1014
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
1015
|
-
Processing by AnonymousController#list as HTML
|
1016
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
1017
|
-
Processing by AnonymousController#wcid as HTML
|
1018
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1019
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
1020
|
-
Processing by AnonymousController#list as HTML
|
1021
|
-
Completed 500 Internal Server Error in 0ms
|
1022
|
-
Processing by AnonymousController#list as HTML
|
1023
|
-
Completed 500 Internal Server Error in 0ms
|
1024
|
-
Processing by AnonymousController#list as HTML
|
1025
|
-
Rendered text template (0.0ms)
|
1026
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1027
|
-
Completed 403 Forbidden in 9ms (Views: 8.3ms)
|
1028
|
-
Processing by AnonymousController#list as HTML
|
1029
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
1030
|
-
Processing by AnonymousController#foobar as HTML
|
1031
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1032
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
1033
|
-
Processing by AnonymousController#list as HTML
|
1034
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1035
|
-
Processing by AnonymousController#list as HTML
|
1036
|
-
Completed 500 Internal Server Error in 0ms
|
1037
|
-
Processing by AnonymousController#list as HTML
|
1038
|
-
Completed 500 Internal Server Error in 0ms
|
1039
|
-
Processing by AnonymousController#list as HTML
|
1040
|
-
Rendered text template (0.0ms)
|
1041
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1042
|
-
Completed 403 Forbidden in 1ms (Views: 0.2ms)
|
1043
|
-
Processing by AnonymousController#list as HTML
|
1044
|
-
Rendered text template (0.0ms)
|
1045
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1046
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1047
|
-
Processing by AnonymousController#list as HTML
|
1048
|
-
Rendered text template (0.0ms)
|
1049
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1050
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
1051
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1052
|
-
Rendered text template (0.0ms)
|
1053
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1054
|
-
Processing by AnonymousController#list as HTML
|
1055
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1056
|
-
Processing by AnonymousController#foobar as HTML
|
1057
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1058
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1059
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1060
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1061
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1062
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
1063
|
-
Processing by AnonymousController#foobar as HTML
|
1064
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1065
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1066
|
-
Processing by AnonymousController#wcid as HTML
|
1067
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1068
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1069
|
-
Processing by AnonymousController#wcid as HTML
|
1070
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1071
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1072
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1073
|
-
Processing by AnonymousController#wcid as HTML
|
1074
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1075
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1076
|
-
Processing by AnonymousController#wcid as HTML
|
1077
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1078
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1079
|
-
Processing by AnonymousController#wcid as HTML
|
1080
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1081
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1082
|
-
Processing by AnonymousController#list as HTML
|
1083
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1084
|
-
Processing by AnonymousController#wcid as HTML
|
1085
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1086
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1087
|
-
Processing by AnonymousController#list as HTML
|
1088
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1089
|
-
Processing by AnonymousController#wcid as HTML
|
1090
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1091
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1092
|
-
Processing by AnonymousController#list as HTML
|
1093
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1094
|
-
Processing by AnonymousController#wcid as HTML
|
1095
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1096
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1097
|
-
Processing by AnonymousController#list as HTML
|
1098
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1099
|
-
Processing by AnonymousController#list as HTML
|
1100
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1101
|
-
Processing by AnonymousController#wcid as HTML
|
1102
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1103
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1104
|
-
Processing by AnonymousController#list as HTML
|
1105
|
-
Rendered text template (0.0ms)
|
1106
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1107
|
-
Completed 403 Forbidden in 2ms (Views: 2.0ms)
|
1108
|
-
Processing by AnonymousController#list as HTML
|
1109
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1110
|
-
Processing by AnonymousController#foobar as HTML
|
1111
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1112
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1113
|
-
Processing by AnonymousController#list as HTML
|
1114
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1115
|
-
Processing by AnonymousController#list as HTML
|
1116
|
-
Completed 500 Internal Server Error in 0ms
|
1117
|
-
Processing by AnonymousController#list as HTML
|
1118
|
-
Completed 500 Internal Server Error in 0ms
|
1119
|
-
Processing by AnonymousController#list as HTML
|
1120
|
-
Rendered text template (0.0ms)
|
1121
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1122
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
1123
|
-
Processing by AnonymousController#list as HTML
|
1124
|
-
Rendered text template (0.0ms)
|
1125
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1126
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1127
|
-
Processing by AnonymousController#list as HTML
|
1128
|
-
Rendered text template (0.0ms)
|
1129
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1130
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
1131
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1132
|
-
Rendered text template (0.0ms)
|
1133
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1134
|
-
Processing by AnonymousController#list as HTML
|
1135
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1136
|
-
Processing by AnonymousController#foobar as HTML
|
1137
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1138
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1139
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1140
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1141
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1142
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
1143
|
-
Processing by AnonymousController#foobar as HTML
|
1144
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1145
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1146
|
-
Processing by AnonymousController#wcid as HTML
|
1147
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1148
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1149
|
-
Processing by AnonymousController#wcid as HTML
|
1150
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1151
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1152
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1153
|
-
Processing by AnonymousController#wcid as HTML
|
1154
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1155
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1156
|
-
Processing by AnonymousController#wcid as HTML
|
1157
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1158
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1159
|
-
Processing by AnonymousController#wcid as HTML
|
1160
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1161
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1162
|
-
Processing by AnonymousController#list as HTML
|
1163
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1164
|
-
Processing by AnonymousController#wcid as HTML
|
1165
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1166
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1167
|
-
Processing by AnonymousController#list as HTML
|
1168
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1169
|
-
Processing by AnonymousController#wcid as HTML
|
1170
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1171
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1172
|
-
Processing by AnonymousController#list as HTML
|
1173
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1174
|
-
Processing by AnonymousController#wcid as HTML
|
1175
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1176
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1177
|
-
Processing by AnonymousController#list as HTML
|
1178
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1179
|
-
Processing by AnonymousController#list as HTML
|
1180
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1181
|
-
Processing by AnonymousController#wcid as HTML
|
1182
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1183
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1184
|
-
Processing by AnonymousController#list as HTML
|
1185
|
-
Rendered text template (0.0ms)
|
1186
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1187
|
-
Completed 403 Forbidden in 6ms (Views: 5.7ms)
|
1188
|
-
Processing by AnonymousController#list as HTML
|
1189
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1190
|
-
Processing by AnonymousController#foobar as HTML
|
1191
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1192
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1193
|
-
Processing by AnonymousController#list as HTML
|
1194
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
1195
|
-
Processing by AnonymousController#list as HTML
|
1196
|
-
Completed 500 Internal Server Error in 0ms
|
1197
|
-
Processing by AnonymousController#list as HTML
|
1198
|
-
Completed 500 Internal Server Error in 1ms
|
1199
|
-
Processing by AnonymousController#list as HTML
|
1200
|
-
Rendered text template (0.0ms)
|
1201
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1202
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
1203
|
-
Processing by AnonymousController#list as HTML
|
1204
|
-
Rendered text template (0.0ms)
|
1205
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1206
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1207
|
-
Processing by AnonymousController#list as HTML
|
1208
|
-
Rendered text template (0.0ms)
|
1209
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1210
|
-
Completed 403 Forbidden in 1ms (Views: 0.5ms)
|
1211
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1212
|
-
Rendered text template (0.0ms)
|
1213
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1214
|
-
Processing by AnonymousController#list as HTML
|
1215
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1216
|
-
Processing by AnonymousController#foobar as HTML
|
1217
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1218
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1219
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1220
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1221
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1222
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
1223
|
-
Processing by AnonymousController#foobar as HTML
|
1224
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1225
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1226
|
-
Processing by AnonymousController#wcid as HTML
|
1227
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1228
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1229
|
-
Processing by AnonymousController#wcid as HTML
|
1230
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1231
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1232
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
1233
|
-
Processing by AnonymousController#wcid as HTML
|
1234
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1235
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1236
|
-
Processing by AnonymousController#wcid as HTML
|
1237
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1238
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1239
|
-
Processing by AnonymousController#wcid as HTML
|
1240
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1241
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1242
|
-
Processing by AnonymousController#list as HTML
|
1243
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1244
|
-
Processing by AnonymousController#wcid as HTML
|
1245
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1246
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1247
|
-
Processing by AnonymousController#list as HTML
|
1248
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1249
|
-
Processing by AnonymousController#wcid as HTML
|
1250
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1251
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1252
|
-
Processing by AnonymousController#list as HTML
|
1253
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1254
|
-
Processing by AnonymousController#wcid as HTML
|
1255
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1256
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1257
|
-
Processing by AnonymousController#list as HTML
|
1258
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
1259
|
-
Processing by AnonymousController#list as HTML
|
1260
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1261
|
-
Processing by AnonymousController#wcid as HTML
|
1262
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1263
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1264
|
-
Processing by AnonymousController#list as HTML
|
1265
|
-
Rendered text template (0.0ms)
|
1266
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1267
|
-
Completed 403 Forbidden in 2ms (Views: 1.7ms)
|
1268
|
-
Processing by AnonymousController#list as HTML
|
1269
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1270
|
-
Processing by AnonymousController#foobar as HTML
|
1271
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1272
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1273
|
-
Processing by AnonymousController#list as HTML
|
1274
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1275
|
-
Processing by AnonymousController#list as HTML
|
1276
|
-
Completed 500 Internal Server Error in 0ms
|
1277
|
-
Processing by AnonymousController#list as HTML
|
1278
|
-
Completed 500 Internal Server Error in 1ms
|
1279
|
-
Processing by AnonymousController#list as HTML
|
1280
|
-
Rendered text template (0.0ms)
|
1281
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1282
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
1283
|
-
Processing by AnonymousController#list as HTML
|
1284
|
-
Rendered text template (0.0ms)
|
1285
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1286
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1287
|
-
Processing by AnonymousController#list as HTML
|
1288
|
-
Rendered text template (0.0ms)
|
1289
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1290
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1291
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1292
|
-
Rendered text template (0.0ms)
|
1293
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1294
|
-
Processing by AnonymousController#list as HTML
|
1295
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1296
|
-
Processing by AnonymousController#foobar as HTML
|
1297
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1298
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1299
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1300
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1301
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1302
|
-
Completed 404 Not Found in 1ms (Views: 0.3ms)
|
1303
|
-
Processing by AnonymousController#foobar as HTML
|
1304
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1305
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1306
|
-
Processing by AnonymousController#wcid as HTML
|
1307
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1308
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1309
|
-
Processing by AnonymousController#wcid as HTML
|
1310
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1311
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1312
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1313
|
-
Processing by AnonymousController#wcid as HTML
|
1314
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1315
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1316
|
-
Processing by AnonymousController#wcid as HTML
|
1317
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1318
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1319
|
-
Processing by AnonymousController#wcid as HTML
|
1320
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1321
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1322
|
-
Processing by AnonymousController#list as HTML
|
1323
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1324
|
-
Processing by AnonymousController#wcid as HTML
|
1325
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1326
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1327
|
-
Processing by AnonymousController#list as HTML
|
1328
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1329
|
-
Processing by AnonymousController#wcid as HTML
|
1330
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1331
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1332
|
-
Processing by AnonymousController#list as HTML
|
1333
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1334
|
-
Processing by AnonymousController#wcid as HTML
|
1335
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1336
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1337
|
-
Processing by AnonymousController#list as HTML
|
1338
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1339
|
-
Processing by AnonymousController#list as HTML
|
1340
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
1341
|
-
Processing by AnonymousController#wcid as HTML
|
1342
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1343
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1344
|
-
Processing by AnonymousController#list as HTML
|
1345
|
-
Rendered text template (0.0ms)
|
1346
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1347
|
-
Completed 403 Forbidden in 10ms (Views: 9.2ms)
|
1348
|
-
Processing by AnonymousController#list as HTML
|
1349
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1350
|
-
Processing by AnonymousController#foobar as HTML
|
1351
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1352
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
1353
|
-
Processing by AnonymousController#list as HTML
|
1354
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1355
|
-
Processing by AnonymousController#list as HTML
|
1356
|
-
Completed 500 Internal Server Error in 0ms
|
1357
|
-
Processing by AnonymousController#list as HTML
|
1358
|
-
Completed 500 Internal Server Error in 0ms
|
1359
|
-
Processing by AnonymousController#list as HTML
|
1360
|
-
Rendered text template (0.0ms)
|
1361
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1362
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
1363
|
-
Processing by AnonymousController#list as HTML
|
1364
|
-
Rendered text template (0.0ms)
|
1365
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1366
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
1367
|
-
Processing by AnonymousController#list as HTML
|
1368
|
-
Rendered text template (0.0ms)
|
1369
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1370
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1371
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1372
|
-
Rendered text template (0.0ms)
|
1373
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1374
|
-
Processing by AnonymousController#list as HTML
|
1375
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1376
|
-
Processing by AnonymousController#foobar as HTML
|
1377
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1378
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1379
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1380
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1381
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1382
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
1383
|
-
Processing by AnonymousController#foobar as HTML
|
1384
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1385
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1386
|
-
Processing by AnonymousController#wcid as HTML
|
1387
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1388
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1389
|
-
Processing by AnonymousController#wcid as HTML
|
1390
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1391
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1392
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
1393
|
-
Processing by AnonymousController#wcid as HTML
|
1394
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1395
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1396
|
-
Processing by AnonymousController#wcid as HTML
|
1397
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1398
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1399
|
-
Processing by AnonymousController#wcid as HTML
|
1400
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1401
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1402
|
-
Processing by AnonymousController#list as HTML
|
1403
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1404
|
-
Processing by AnonymousController#wcid as HTML
|
1405
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1406
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1407
|
-
Processing by AnonymousController#list as HTML
|
1408
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1409
|
-
Processing by AnonymousController#wcid as HTML
|
1410
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1411
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1412
|
-
Processing by AnonymousController#list as HTML
|
1413
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1414
|
-
Processing by AnonymousController#wcid as HTML
|
1415
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1416
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1417
|
-
Processing by AnonymousController#list as HTML
|
1418
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1419
|
-
Processing by AnonymousController#list as HTML
|
1420
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1421
|
-
Processing by AnonymousController#wcid as HTML
|
1422
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1423
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1424
|
-
Processing by AnonymousController#list as HTML
|
1425
|
-
Rendered text template (0.0ms)
|
1426
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1427
|
-
Completed 403 Forbidden in 5ms (Views: 4.6ms)
|
1428
|
-
Processing by AnonymousController#list as HTML
|
1429
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1430
|
-
Processing by AnonymousController#foobar as HTML
|
1431
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1432
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1433
|
-
Processing by AnonymousController#list as HTML
|
1434
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1435
|
-
Processing by AnonymousController#list as HTML
|
1436
|
-
Completed 500 Internal Server Error in 0ms
|
1437
|
-
Processing by AnonymousController#list as HTML
|
1438
|
-
Completed 500 Internal Server Error in 0ms
|
1439
|
-
Processing by AnonymousController#list as HTML
|
1440
|
-
Rendered text template (0.0ms)
|
1441
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1442
|
-
Completed 403 Forbidden in 1ms (Views: 0.2ms)
|
1443
|
-
Processing by AnonymousController#list as HTML
|
1444
|
-
Rendered text template (0.0ms)
|
1445
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1446
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1447
|
-
Processing by AnonymousController#list as HTML
|
1448
|
-
Rendered text template (0.0ms)
|
1449
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1450
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1451
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1452
|
-
Rendered text template (0.0ms)
|
1453
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1454
|
-
Processing by AnonymousController#list as HTML
|
1455
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1456
|
-
Processing by AnonymousController#foobar as HTML
|
1457
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1458
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1459
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1460
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1461
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1462
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
1463
|
-
Processing by AnonymousController#foobar as HTML
|
1464
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1465
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1466
|
-
Processing by AnonymousController#wcid as HTML
|
1467
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1468
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1469
|
-
Processing by AnonymousController#wcid as HTML
|
1470
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1471
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1472
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
1473
|
-
Processing by AnonymousController#wcid as HTML
|
1474
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1475
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1476
|
-
Processing by AnonymousController#wcid as HTML
|
1477
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1478
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1479
|
-
Processing by AnonymousController#wcid as HTML
|
1480
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1481
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
1482
|
-
Processing by AnonymousController#list as HTML
|
1483
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1484
|
-
Processing by AnonymousController#wcid as HTML
|
1485
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1486
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
1487
|
-
Processing by AnonymousController#list as HTML
|
1488
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1489
|
-
Processing by AnonymousController#wcid as HTML
|
1490
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1491
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1492
|
-
Processing by AnonymousController#list as HTML
|
1493
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1494
|
-
Processing by AnonymousController#wcid as HTML
|
1495
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1496
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1497
|
-
Processing by AnonymousController#list as HTML
|
1498
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1499
|
-
Processing by AnonymousController#list as HTML
|
1500
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1501
|
-
Processing by AnonymousController#wcid as HTML
|
1502
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1503
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1504
|
-
Processing by AnonymousController#list as HTML
|
1505
|
-
Rendered text template (0.0ms)
|
1506
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1507
|
-
Completed 403 Forbidden in 8ms (Views: 7.5ms)
|
1508
|
-
Processing by AnonymousController#list as HTML
|
1509
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1510
|
-
Processing by AnonymousController#foobar as HTML
|
1511
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1512
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1513
|
-
Processing by AnonymousController#list as HTML
|
1514
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1515
|
-
Processing by AnonymousController#list as HTML
|
1516
|
-
Completed 500 Internal Server Error in 0ms
|
1517
|
-
Processing by AnonymousController#list as HTML
|
1518
|
-
Completed 500 Internal Server Error in 0ms
|
1519
|
-
Processing by AnonymousController#list as HTML
|
1520
|
-
Rendered text template (0.0ms)
|
1521
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1522
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
1523
|
-
Processing by AnonymousController#list as HTML
|
1524
|
-
Rendered text template (0.0ms)
|
1525
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1526
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1527
|
-
Processing by AnonymousController#list as HTML
|
1528
|
-
Rendered text template (0.0ms)
|
1529
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1530
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
1531
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1532
|
-
Rendered text template (0.0ms)
|
1533
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1534
|
-
Processing by AnonymousController#list as HTML
|
1535
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1536
|
-
Processing by AnonymousController#foobar as HTML
|
1537
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1538
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1539
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1540
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1541
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1542
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
1543
|
-
Processing by AnonymousController#foobar as HTML
|
1544
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1545
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
1546
|
-
Processing by AnonymousController#wcid as HTML
|
1547
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1548
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
1549
|
-
Processing by AnonymousController#wcid as HTML
|
1550
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1551
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1552
|
-
Completed 400 Bad Request in 1ms (Views: 0.1ms)
|
1553
|
-
Processing by AnonymousController#wcid as HTML
|
1554
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1555
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1556
|
-
Processing by AnonymousController#wcid as HTML
|
1557
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1558
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1559
|
-
Processing by AnonymousController#wcid as HTML
|
1560
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1561
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1562
|
-
Processing by AnonymousController#list as HTML
|
1563
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1564
|
-
Processing by AnonymousController#wcid as HTML
|
1565
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1566
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1567
|
-
Processing by AnonymousController#list as HTML
|
1568
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1569
|
-
Processing by AnonymousController#wcid as HTML
|
1570
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1571
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1572
|
-
Processing by AnonymousController#list as HTML
|
1573
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1574
|
-
Processing by AnonymousController#wcid as HTML
|
1575
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1576
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1577
|
-
Processing by AnonymousController#list as HTML
|
1578
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1579
|
-
Processing by AnonymousController#list as HTML
|
1580
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1581
|
-
Processing by AnonymousController#wcid as HTML
|
1582
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1583
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1584
|
-
Processing by AnonymousController#list as HTML
|
1585
|
-
Rendered text template (0.0ms)
|
1586
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1587
|
-
Completed 403 Forbidden in 5ms (Views: 4.9ms)
|
1588
|
-
Processing by AnonymousController#list as HTML
|
1589
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
1590
|
-
Processing by AnonymousController#foobar as HTML
|
1591
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1592
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1593
|
-
Processing by AnonymousController#list as HTML
|
1594
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1595
|
-
Processing by AnonymousController#list as HTML
|
1596
|
-
Completed 500 Internal Server Error in 0ms
|
1597
|
-
Processing by AnonymousController#list as HTML
|
1598
|
-
Completed 500 Internal Server Error in 0ms
|
1599
|
-
Processing by AnonymousController#list as HTML
|
1600
|
-
Rendered text template (0.0ms)
|
1601
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1602
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
1603
|
-
Processing by AnonymousController#list as HTML
|
1604
|
-
Rendered text template (0.0ms)
|
1605
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1606
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1607
|
-
Processing by AnonymousController#list as HTML
|
1608
|
-
Rendered text template (0.0ms)
|
1609
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1610
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1611
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1612
|
-
Rendered text template (0.0ms)
|
1613
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1614
|
-
Processing by AnonymousController#list as HTML
|
1615
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1616
|
-
Processing by AnonymousController#foobar as HTML
|
1617
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1618
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1619
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1620
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1621
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1622
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
1623
|
-
Processing by AnonymousController#foobar as HTML
|
1624
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1625
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1626
|
-
Processing by AnonymousController#wcid as HTML
|
1627
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1628
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1629
|
-
Processing by AnonymousController#wcid as HTML
|
1630
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1631
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1632
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1633
|
-
Processing by AnonymousController#wcid as HTML
|
1634
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1635
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1636
|
-
Processing by AnonymousController#wcid as HTML
|
1637
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1638
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1639
|
-
Processing by AnonymousController#wcid as HTML
|
1640
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1641
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1642
|
-
Processing by AnonymousController#list as HTML
|
1643
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
1644
|
-
Processing by AnonymousController#wcid as HTML
|
1645
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1646
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1647
|
-
Processing by AnonymousController#list as HTML
|
1648
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1649
|
-
Processing by AnonymousController#wcid as HTML
|
1650
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1651
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1652
|
-
Processing by AnonymousController#list as HTML
|
1653
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1654
|
-
Processing by AnonymousController#wcid as HTML
|
1655
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1656
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1657
|
-
Processing by AnonymousController#list as HTML
|
1658
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1659
|
-
Processing by AnonymousController#list as HTML
|
1660
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1661
|
-
Processing by AnonymousController#wcid as HTML
|
1662
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1663
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1664
|
-
Processing by AnonymousController#list as HTML
|
1665
|
-
Rendered text template (0.0ms)
|
1666
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
1667
|
-
Completed 403 Forbidden in 5ms (Views: 4.8ms)
|
1668
|
-
Processing by AnonymousController#list as HTML
|
1669
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1670
|
-
Processing by AnonymousController#foobar as HTML
|
1671
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
1672
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
1673
|
-
Processing by AnonymousController#list as HTML
|
1674
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
1675
|
-
Processing by AnonymousController#list as HTML
|
1676
|
-
Completed 500 Internal Server Error in 0ms
|
1677
|
-
Processing by AnonymousController#list as HTML
|
1678
|
-
Completed 500 Internal Server Error in 0ms
|
1679
|
-
Processing by AnonymousController#list as HTML
|
1680
|
-
Rendered text template (0.0ms)
|
1681
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
1682
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
1683
|
-
Processing by AnonymousController#list as HTML
|
1684
|
-
Rendered text template (0.0ms)
|
1685
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1686
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1687
|
-
Processing by AnonymousController#list as HTML
|
1688
|
-
Rendered text template (0.0ms)
|
1689
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
1690
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
1691
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
1692
|
-
Rendered text template (0.0ms)
|
1693
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
1694
|
-
Processing by AnonymousController#list as HTML
|
1695
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1696
|
-
Processing by AnonymousController#foobar as HTML
|
1697
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
1698
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
1699
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1700
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
1701
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
1702
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
1703
|
-
Processing by AnonymousController#foobar as HTML
|
1704
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
1705
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1706
|
-
Processing by AnonymousController#wcid as HTML
|
1707
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
1708
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1709
|
-
Processing by AnonymousController#wcid as HTML
|
1710
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
1711
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
1712
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
1713
|
-
Processing by AnonymousController#wcid as HTML
|
1714
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
1715
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1716
|
-
Processing by AnonymousController#wcid as HTML
|
1717
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1718
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1719
|
-
Processing by AnonymousController#wcid as HTML
|
1720
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "mention_slug"=>nil, "chatop"=>"wcid"}
|
1721
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
1722
|
-
Processing by AnonymousController#list as HTML
|
1723
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1724
|
-
Processing by AnonymousController#wcid as HTML
|
1725
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1726
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1727
|
-
Processing by AnonymousController#list as HTML
|
1728
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1729
|
-
Processing by AnonymousController#wcid as HTML
|
1730
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1731
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1732
|
-
Processing by AnonymousController#list as HTML
|
1733
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1734
|
-
Processing by AnonymousController#wcid as HTML
|
1735
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1736
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
1737
|
-
Processing by AnonymousController#list as HTML
|
1738
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1739
|
-
Processing by AnonymousController#list as HTML
|
1740
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
1741
|
-
Processing by AnonymousController#wcid as HTML
|
1742
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "mention_slug"=>"bhuga", "chatop"=>"wcid"}
|
1743
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|