chatops-controller 3.0.3 → 3.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 +5 -5
- data/README.md +3 -0
- data/lib/chatops/controller.rb +8 -3
- data/lib/chatops/controller/test_case_helpers.rb +4 -2
- data/lib/chatops/controller/version.rb +1 -1
- data/spec/dummy/spec +1 -1
- metadata +30 -31
- data/spec/dummy/log/test.log +0 -3830
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 963b5f8e2c2c99ae73356cfba2022e4ea639d51b93a45f540f7f4d961c95944e
|
|
4
|
+
data.tar.gz: 1afea1eb3579014b967f03aee17b58d8701c1ff6eb0a2505c8c356f981427dcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d6425cc60afa7da4b5e5ebbb1f1ac405e197f4c5cd7e890a36644fd87bdb3c2b2c33b7ff479b3ce889d012055c3ee27a6e5e09cb2371c848ce162b9d0910bd7
|
|
7
|
+
data.tar.gz: 9ebd58830a90ba60d89ae820fd2f69c9a59bea08877b33d76fff03e956b5b0ef6b15521e45c38a533c2b76fecfa7115bacc020239d9034475496b2a220de79a8
|
data/README.md
CHANGED
|
@@ -93,6 +93,9 @@ this regex. Arguments will be available in the `params` hash. `params[:user]`
|
|
|
93
93
|
and `params[:room_id]` are special, and will be set by the client. `user` will
|
|
94
94
|
always be the login of the user typing the command, and `room_id` will be where
|
|
95
95
|
it was typed.
|
|
96
|
+
The optional `mention_slug` parameter will provide the name to use to refer to
|
|
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.
|
|
96
99
|
|
|
97
100
|
You can return `jsonrpc_success` with a string to return text to chat. If you
|
|
98
101
|
have an input validation or other handle-able error, you can use
|
data/lib/chatops/controller.rb
CHANGED
|
@@ -28,7 +28,7 @@ module Chatops
|
|
|
28
28
|
|
|
29
29
|
def process(*args)
|
|
30
30
|
scrubbed_params = jsonrpc_params.except(
|
|
31
|
-
:user, :method, :controller, :action, :params, :room_id)
|
|
31
|
+
:user, :mention_slug, :method, :controller, :action, :params, :room_id)
|
|
32
32
|
|
|
33
33
|
scrubbed_params.each { |k, v| params[k] = v }
|
|
34
34
|
|
|
@@ -56,8 +56,13 @@ module Chatops
|
|
|
56
56
|
params["params"] || {}
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
# `options` supports any of the optional fields documented
|
|
60
|
+
# in the [protocol](../../docs/protocol-description.md).
|
|
61
|
+
def jsonrpc_success(message, options: {})
|
|
62
|
+
response = { :result => message.to_s }
|
|
63
|
+
# do not allow options to override message
|
|
64
|
+
options.delete(:result)
|
|
65
|
+
jsonrpc_response response.merge(options)
|
|
61
66
|
end
|
|
62
67
|
alias_method :chatop_send, :jsonrpc_success
|
|
63
68
|
|
|
@@ -20,11 +20,13 @@ module Chatops::Controller::TestCaseHelpers
|
|
|
20
20
|
args = params.dup.symbolize_keys
|
|
21
21
|
user = args.delete :user
|
|
22
22
|
room_id = args.delete :room_id
|
|
23
|
+
mention_slug = args.delete :mention_slug
|
|
23
24
|
|
|
24
25
|
params = {
|
|
25
26
|
:params => args,
|
|
26
27
|
:room_id => room_id,
|
|
27
|
-
:user => user
|
|
28
|
+
:user => user,
|
|
29
|
+
:mention_slug => mention_slug,
|
|
28
30
|
}
|
|
29
31
|
|
|
30
32
|
major_version = Rails.version.split('.')[0].to_i
|
|
@@ -57,7 +59,7 @@ module Chatops::Controller::TestCaseHelpers
|
|
|
57
59
|
matcher["params"].each do |param|
|
|
58
60
|
jsonrpc_params[param] = match_data[param.to_sym]
|
|
59
61
|
end
|
|
60
|
-
jsonrpc_params.merge!(user: user, room_id: room_id)
|
|
62
|
+
jsonrpc_params.merge!(user: user, room_id: room_id, mention_slug: user)
|
|
61
63
|
chatop matcher["name"].to_sym, jsonrpc_params
|
|
62
64
|
end
|
|
63
65
|
|
data/spec/dummy/spec
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
spec/dummy/../../spec
|
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chatops-controller
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0
|
|
4
|
+
version: 3.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Lavender
|
|
8
|
+
- Misty De Meo
|
|
8
9
|
- GitHub
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: bin
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date:
|
|
13
|
+
date: 2018-06-26 00:00:00.000000000 Z
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: rails
|
|
@@ -67,7 +68,7 @@ dependencies:
|
|
|
67
68
|
- - "~>"
|
|
68
69
|
- !ruby/object:Gem::Version
|
|
69
70
|
version: '0'
|
|
70
|
-
description: See the README for documentation
|
|
71
|
+
description: See the README for documentation
|
|
71
72
|
email:
|
|
72
73
|
- opensource+chatops-controller@github.com
|
|
73
74
|
executables: []
|
|
@@ -115,7 +116,6 @@ files:
|
|
|
115
116
|
- spec/dummy/db/development.sqlite3
|
|
116
117
|
- spec/dummy/db/schema.rb
|
|
117
118
|
- spec/dummy/db/test.sqlite3
|
|
118
|
-
- spec/dummy/log/test.log
|
|
119
119
|
- spec/dummy/public/404.html
|
|
120
120
|
- spec/dummy/public/422.html
|
|
121
121
|
- spec/dummy/public/500.html
|
|
@@ -145,51 +145,50 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
145
145
|
version: '0'
|
|
146
146
|
requirements: []
|
|
147
147
|
rubyforge_project:
|
|
148
|
-
rubygems_version: 2.
|
|
148
|
+
rubygems_version: 2.7.6
|
|
149
149
|
signing_key:
|
|
150
150
|
specification_version: 4
|
|
151
151
|
summary: Rails helpers to create JSON-RPC chatops
|
|
152
152
|
test_files:
|
|
153
|
+
- spec/spec_helper.rb
|
|
154
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
155
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
153
156
|
- spec/dummy/app/assets/javascripts/application.js
|
|
154
157
|
- spec/dummy/app/assets/stylesheets/application.css
|
|
155
|
-
- spec/dummy/app/controllers/application_controller.rb
|
|
156
158
|
- spec/dummy/app/helpers/application_helper.rb
|
|
157
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
|
158
|
-
- spec/dummy/bin/bundle
|
|
159
|
-
- spec/dummy/bin/rails
|
|
160
159
|
- spec/dummy/bin/rake
|
|
161
160
|
- spec/dummy/bin/setup
|
|
162
|
-
- spec/dummy/
|
|
163
|
-
- spec/dummy/
|
|
164
|
-
- spec/dummy/config/
|
|
165
|
-
- spec/dummy/config/
|
|
166
|
-
- spec/dummy/config/
|
|
161
|
+
- spec/dummy/bin/bundle
|
|
162
|
+
- spec/dummy/bin/rails
|
|
163
|
+
- spec/dummy/config/secrets.yml
|
|
164
|
+
- spec/dummy/config/routes.rb
|
|
165
|
+
- spec/dummy/config/locales/en.yml
|
|
167
166
|
- spec/dummy/config/environments/production.rb
|
|
167
|
+
- spec/dummy/config/environments/development.rb
|
|
168
168
|
- spec/dummy/config/environments/test.rb
|
|
169
|
-
- spec/dummy/config/
|
|
169
|
+
- spec/dummy/config/environment.rb
|
|
170
|
+
- spec/dummy/config/application.rb
|
|
171
|
+
- spec/dummy/config/database.yml
|
|
172
|
+
- spec/dummy/config/boot.rb
|
|
170
173
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
171
|
-
- spec/dummy/config/initializers/cookies_serializer.rb
|
|
172
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
173
|
-
- spec/dummy/config/initializers/inflections.rb
|
|
174
174
|
- spec/dummy/config/initializers/mime_types.rb
|
|
175
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
175
176
|
- spec/dummy/config/initializers/session_store.rb
|
|
176
177
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
177
|
-
- spec/dummy/config/
|
|
178
|
-
- spec/dummy/config/
|
|
179
|
-
- spec/dummy/config/
|
|
178
|
+
- spec/dummy/config/initializers/assets.rb
|
|
179
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
|
180
|
+
- spec/dummy/config/initializers/inflections.rb
|
|
180
181
|
- spec/dummy/config.ru
|
|
181
|
-
- spec/dummy/
|
|
182
|
-
- spec/dummy/
|
|
183
|
-
- spec/dummy/
|
|
184
|
-
- spec/dummy/log/test.log
|
|
185
|
-
- spec/dummy/public/404.html
|
|
182
|
+
- spec/dummy/spec
|
|
183
|
+
- spec/dummy/Rakefile
|
|
184
|
+
- spec/dummy/public/favicon.ico
|
|
186
185
|
- spec/dummy/public/422.html
|
|
187
186
|
- spec/dummy/public/500.html
|
|
188
|
-
- spec/dummy/public/
|
|
189
|
-
- spec/dummy/
|
|
187
|
+
- spec/dummy/public/404.html
|
|
188
|
+
- spec/dummy/db/schema.rb
|
|
189
|
+
- spec/dummy/db/test.sqlite3
|
|
190
|
+
- spec/dummy/db/development.sqlite3
|
|
190
191
|
- spec/dummy/README.rdoc
|
|
191
|
-
- spec/
|
|
192
|
+
- spec/support/json_response.rb
|
|
192
193
|
- spec/lib/chatops/controller_spec.rb
|
|
193
194
|
- spec/rails_helper.rb
|
|
194
|
-
- spec/spec_helper.rb
|
|
195
|
-
- spec/support/json_response.rb
|
data/spec/dummy/log/test.log
DELETED
|
@@ -1,3830 +0,0 @@
|
|
|
1
|
-
Processing by AnonymousController#list as HTML
|
|
2
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3
|
-
Rendered text template (0.1ms)
|
|
4
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
5
|
-
Completed 403 Forbidden in 6ms (Views: 6.1ms)
|
|
6
|
-
Processing by AnonymousController#list as HTML
|
|
7
|
-
Completed 500 Internal Server Error in 4ms
|
|
8
|
-
Processing by AnonymousController#list as HTML
|
|
9
|
-
Completed 500 Internal Server Error in 4ms
|
|
10
|
-
Processing by AnonymousController#list as HTML
|
|
11
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
12
|
-
Rendered text template (0.1ms)
|
|
13
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
14
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
15
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
16
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
17
|
-
Rendered text template (0.0ms)
|
|
18
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
19
|
-
Processing by AnonymousController#list as HTML
|
|
20
|
-
Completed 500 Internal Server Error in 5ms
|
|
21
|
-
Processing by AnonymousController#foobar as HTML
|
|
22
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
23
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
24
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
25
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
26
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
27
|
-
Processing by AnonymousController#foobar as HTML
|
|
28
|
-
Parameters: {"user"=>"foo"}
|
|
29
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
30
|
-
Processing by AnonymousController#wcid as HTML
|
|
31
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
32
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
33
|
-
Processing by AnonymousController#wcid as HTML
|
|
34
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
35
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
36
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
37
|
-
Processing by AnonymousController#wcid as HTML
|
|
38
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
39
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
40
|
-
Processing by AnonymousController#wcid as HTML
|
|
41
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
42
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
43
|
-
Processing by AnonymousController#wcid as HTML
|
|
44
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
45
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
46
|
-
Processing by AnonymousController#list as HTML
|
|
47
|
-
Completed 500 Internal Server Error in 3ms
|
|
48
|
-
Processing by AnonymousController#list as HTML
|
|
49
|
-
Completed 500 Internal Server Error in 5ms
|
|
50
|
-
Processing by AnonymousController#list as HTML
|
|
51
|
-
Completed 500 Internal Server Error in 3ms
|
|
52
|
-
Processing by AnonymousController#list as HTML
|
|
53
|
-
Completed 500 Internal Server Error in 4ms
|
|
54
|
-
Processing by AnonymousController#list as HTML
|
|
55
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
56
|
-
Rendered text template (0.1ms)
|
|
57
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
58
|
-
Completed 403 Forbidden in 2ms (Views: 1.5ms)
|
|
59
|
-
Processing by AnonymousController#list as HTML
|
|
60
|
-
Completed 500 Internal Server Error in 3ms
|
|
61
|
-
Processing by AnonymousController#list as HTML
|
|
62
|
-
Completed 500 Internal Server Error in 4ms
|
|
63
|
-
Processing by AnonymousController#list as HTML
|
|
64
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
65
|
-
Rendered text template (0.1ms)
|
|
66
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
67
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
68
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
69
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
70
|
-
Rendered text template (0.1ms)
|
|
71
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
72
|
-
Processing by AnonymousController#list as HTML
|
|
73
|
-
Completed 500 Internal Server Error in 3ms
|
|
74
|
-
Processing by AnonymousController#foobar as HTML
|
|
75
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
76
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
77
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
78
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
79
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
80
|
-
Processing by AnonymousController#foobar as HTML
|
|
81
|
-
Parameters: {"user"=>"foo"}
|
|
82
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
83
|
-
Processing by AnonymousController#wcid as HTML
|
|
84
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
85
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
86
|
-
Processing by AnonymousController#wcid as HTML
|
|
87
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
88
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
89
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
90
|
-
Processing by AnonymousController#wcid as HTML
|
|
91
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
92
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
93
|
-
Processing by AnonymousController#wcid as HTML
|
|
94
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
95
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
96
|
-
Processing by AnonymousController#wcid as HTML
|
|
97
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
98
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
99
|
-
Processing by AnonymousController#list as HTML
|
|
100
|
-
Completed 500 Internal Server Error in 4ms
|
|
101
|
-
Processing by AnonymousController#list as HTML
|
|
102
|
-
Completed 500 Internal Server Error in 3ms
|
|
103
|
-
Processing by AnonymousController#list as HTML
|
|
104
|
-
Completed 500 Internal Server Error in 3ms
|
|
105
|
-
Processing by AnonymousController#list as HTML
|
|
106
|
-
Completed 500 Internal Server Error in 3ms
|
|
107
|
-
Processing by AnonymousController#list as HTML
|
|
108
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
109
|
-
Rendered text template (0.1ms)
|
|
110
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
111
|
-
Completed 403 Forbidden in 5ms (Views: 4.5ms)
|
|
112
|
-
Processing by AnonymousController#list as HTML
|
|
113
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
|
114
|
-
Processing by AnonymousController#list as HTML
|
|
115
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
116
|
-
Processing by AnonymousController#list as HTML
|
|
117
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
118
|
-
Rendered text template (0.0ms)
|
|
119
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
120
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
121
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
122
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
123
|
-
Rendered text template (0.0ms)
|
|
124
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
125
|
-
Processing by AnonymousController#list as HTML
|
|
126
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
127
|
-
Processing by AnonymousController#foobar as HTML
|
|
128
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
129
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
130
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
131
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
132
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
133
|
-
Processing by AnonymousController#foobar as HTML
|
|
134
|
-
Parameters: {"user"=>"foo"}
|
|
135
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
136
|
-
Processing by AnonymousController#wcid as HTML
|
|
137
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
138
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
139
|
-
Processing by AnonymousController#wcid as HTML
|
|
140
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
141
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
142
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
143
|
-
Processing by AnonymousController#wcid as HTML
|
|
144
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
145
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
146
|
-
Processing by AnonymousController#wcid as HTML
|
|
147
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
148
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
149
|
-
Processing by AnonymousController#wcid as HTML
|
|
150
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
151
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
152
|
-
Processing by AnonymousController#list as HTML
|
|
153
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
154
|
-
Processing by AnonymousController#wcid as HTML
|
|
155
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
156
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
157
|
-
Processing by AnonymousController#list as HTML
|
|
158
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
159
|
-
Processing by AnonymousController#wcid as HTML
|
|
160
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
161
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
162
|
-
Processing by AnonymousController#list as HTML
|
|
163
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
164
|
-
Processing by AnonymousController#wcid as HTML
|
|
165
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
166
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
167
|
-
Processing by AnonymousController#list as HTML
|
|
168
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
169
|
-
Processing by AnonymousController#list as HTML
|
|
170
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
171
|
-
Rendered text template (0.1ms)
|
|
172
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
173
|
-
Completed 403 Forbidden in 4ms (Views: 3.3ms)
|
|
174
|
-
Processing by AnonymousController#list as HTML
|
|
175
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
176
|
-
Processing by AnonymousController#list as HTML
|
|
177
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
178
|
-
Processing by AnonymousController#list as HTML
|
|
179
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
180
|
-
Rendered text template (0.1ms)
|
|
181
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
182
|
-
Completed 403 Forbidden in 1ms (Views: 0.8ms)
|
|
183
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
184
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
185
|
-
Rendered text template (0.0ms)
|
|
186
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
187
|
-
Processing by AnonymousController#list as HTML
|
|
188
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
189
|
-
Processing by AnonymousController#foobar as HTML
|
|
190
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
191
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
192
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
193
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
194
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
195
|
-
Processing by AnonymousController#foobar as HTML
|
|
196
|
-
Parameters: {"user"=>"foo"}
|
|
197
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
198
|
-
Processing by AnonymousController#wcid as HTML
|
|
199
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
200
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
201
|
-
Processing by AnonymousController#wcid as HTML
|
|
202
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
203
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
204
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
205
|
-
Processing by AnonymousController#wcid as HTML
|
|
206
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
207
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
208
|
-
Processing by AnonymousController#wcid as HTML
|
|
209
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
210
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
211
|
-
Processing by AnonymousController#wcid as HTML
|
|
212
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
213
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
214
|
-
Processing by AnonymousController#list as HTML
|
|
215
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
216
|
-
Processing by AnonymousController#wcid as HTML
|
|
217
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
218
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
219
|
-
Processing by AnonymousController#list as HTML
|
|
220
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
221
|
-
Processing by AnonymousController#wcid as HTML
|
|
222
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
223
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
224
|
-
Processing by AnonymousController#list as HTML
|
|
225
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
226
|
-
Processing by AnonymousController#wcid as HTML
|
|
227
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
228
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
229
|
-
Processing by AnonymousController#list as HTML
|
|
230
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
231
|
-
Processing by AnonymousController#list as HTML
|
|
232
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
233
|
-
Rendered text template (0.1ms)
|
|
234
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
235
|
-
Completed 403 Forbidden in 5ms (Views: 5.1ms)
|
|
236
|
-
Processing by AnonymousController#list as HTML
|
|
237
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
238
|
-
Processing by AnonymousController#list as HTML
|
|
239
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
240
|
-
Processing by AnonymousController#list as HTML
|
|
241
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
242
|
-
Rendered text template (0.0ms)
|
|
243
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
244
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
245
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
246
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
247
|
-
Rendered text template (0.0ms)
|
|
248
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
249
|
-
Processing by AnonymousController#list as HTML
|
|
250
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
|
251
|
-
Processing by AnonymousController#foobar as HTML
|
|
252
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
253
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
254
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
255
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
256
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
257
|
-
Processing by AnonymousController#foobar as HTML
|
|
258
|
-
Parameters: {"user"=>"foo"}
|
|
259
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
260
|
-
Processing by AnonymousController#wcid as HTML
|
|
261
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
262
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
263
|
-
Processing by AnonymousController#wcid as HTML
|
|
264
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
265
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
266
|
-
Completed 400 Bad Request in 1ms (Views: 0.5ms)
|
|
267
|
-
Processing by AnonymousController#wcid as HTML
|
|
268
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
269
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
270
|
-
Processing by AnonymousController#wcid as HTML
|
|
271
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
272
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
273
|
-
Processing by AnonymousController#wcid as HTML
|
|
274
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
275
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
276
|
-
Processing by AnonymousController#list as HTML
|
|
277
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
278
|
-
Processing by AnonymousController#wcid as HTML
|
|
279
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
280
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
281
|
-
Processing by AnonymousController#list as HTML
|
|
282
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
283
|
-
Processing by AnonymousController#wcid as HTML
|
|
284
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
285
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
286
|
-
Processing by AnonymousController#list as HTML
|
|
287
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
288
|
-
Processing by AnonymousController#wcid as HTML
|
|
289
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
290
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
291
|
-
Processing by AnonymousController#list as HTML
|
|
292
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
293
|
-
Processing by AnonymousController#list as HTML
|
|
294
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
295
|
-
Rendered text template (0.1ms)
|
|
296
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
297
|
-
Completed 403 Forbidden in 2ms (Views: 2.1ms)
|
|
298
|
-
Processing by AnonymousController#list as HTML
|
|
299
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
300
|
-
Processing by AnonymousController#list as HTML
|
|
301
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
302
|
-
Processing by AnonymousController#list as HTML
|
|
303
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
304
|
-
Rendered text template (0.1ms)
|
|
305
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
306
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
307
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
308
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
309
|
-
Rendered text template (0.0ms)
|
|
310
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
311
|
-
Processing by AnonymousController#list as HTML
|
|
312
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
313
|
-
Processing by AnonymousController#foobar as HTML
|
|
314
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
315
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
316
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
317
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
318
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
319
|
-
Processing by AnonymousController#foobar as HTML
|
|
320
|
-
Parameters: {"user"=>"foo"}
|
|
321
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
322
|
-
Processing by AnonymousController#wcid as HTML
|
|
323
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
324
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
325
|
-
Processing by AnonymousController#wcid as HTML
|
|
326
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
327
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
328
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
329
|
-
Processing by AnonymousController#wcid as HTML
|
|
330
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
331
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
332
|
-
Processing by AnonymousController#wcid as HTML
|
|
333
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
334
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
335
|
-
Processing by AnonymousController#wcid as HTML
|
|
336
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
337
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
338
|
-
Processing by AnonymousController#list as HTML
|
|
339
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
340
|
-
Processing by AnonymousController#wcid as HTML
|
|
341
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
342
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
343
|
-
Processing by AnonymousController#list as HTML
|
|
344
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
345
|
-
Processing by AnonymousController#wcid as HTML
|
|
346
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
347
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
348
|
-
Processing by AnonymousController#list as HTML
|
|
349
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
350
|
-
Processing by AnonymousController#wcid as HTML
|
|
351
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
352
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
353
|
-
Processing by AnonymousController#list as HTML
|
|
354
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
355
|
-
Processing by AnonymousController#wcid as HTML
|
|
356
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
357
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
358
|
-
Processing by AnonymousController#wcid as HTML
|
|
359
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
360
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
361
|
-
Processing by AnonymousController#list as HTML
|
|
362
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
363
|
-
Rendered text template (0.1ms)
|
|
364
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
365
|
-
Completed 403 Forbidden in 9ms (Views: 8.7ms)
|
|
366
|
-
Processing by AnonymousController#list as HTML
|
|
367
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
368
|
-
Processing by AnonymousController#list as HTML
|
|
369
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
370
|
-
Processing by AnonymousController#list as HTML
|
|
371
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
372
|
-
Rendered text template (0.1ms)
|
|
373
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
374
|
-
Completed 403 Forbidden in 1ms (Views: 0.5ms)
|
|
375
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
376
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
377
|
-
Rendered text template (0.1ms)
|
|
378
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
379
|
-
Processing by AnonymousController#list as HTML
|
|
380
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
381
|
-
Processing by AnonymousController#foobar as HTML
|
|
382
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
383
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
384
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
385
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
386
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
387
|
-
Processing by AnonymousController#foobar as HTML
|
|
388
|
-
Parameters: {"user"=>"foo"}
|
|
389
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
390
|
-
Processing by AnonymousController#wcid as HTML
|
|
391
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
392
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
393
|
-
Processing by AnonymousController#wcid as HTML
|
|
394
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
395
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
396
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
397
|
-
Processing by AnonymousController#wcid as HTML
|
|
398
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
399
|
-
Completed 400 Bad Request in 1ms (Views: 0.4ms)
|
|
400
|
-
Processing by AnonymousController#wcid as HTML
|
|
401
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
402
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
403
|
-
Processing by AnonymousController#wcid as HTML
|
|
404
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
405
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
406
|
-
Processing by AnonymousController#list as HTML
|
|
407
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
408
|
-
Processing by AnonymousController#wcid as HTML
|
|
409
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
410
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
411
|
-
Processing by AnonymousController#list as HTML
|
|
412
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
413
|
-
Processing by AnonymousController#wcid as HTML
|
|
414
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
415
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
416
|
-
Processing by AnonymousController#list as HTML
|
|
417
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
418
|
-
Processing by AnonymousController#wcid as HTML
|
|
419
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
420
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
421
|
-
Processing by AnonymousController#list as HTML
|
|
422
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
423
|
-
Processing by AnonymousController#list as HTML
|
|
424
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
425
|
-
Rendered text template (0.1ms)
|
|
426
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
427
|
-
Completed 403 Forbidden in 2ms (Views: 1.5ms)
|
|
428
|
-
Processing by AnonymousController#list as HTML
|
|
429
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
|
430
|
-
Processing by AnonymousController#list as HTML
|
|
431
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
432
|
-
Processing by AnonymousController#list as HTML
|
|
433
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
434
|
-
Rendered text template (0.1ms)
|
|
435
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
436
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
437
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
438
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
439
|
-
Rendered text template (0.1ms)
|
|
440
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
441
|
-
Processing by AnonymousController#list as HTML
|
|
442
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
443
|
-
Processing by AnonymousController#foobar as HTML
|
|
444
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
445
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
446
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
447
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
448
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
449
|
-
Processing by AnonymousController#foobar as HTML
|
|
450
|
-
Parameters: {"user"=>"foo"}
|
|
451
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
452
|
-
Processing by AnonymousController#wcid as HTML
|
|
453
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
454
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
455
|
-
Processing by AnonymousController#wcid as HTML
|
|
456
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
457
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
458
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
459
|
-
Processing by AnonymousController#wcid as HTML
|
|
460
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
461
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
462
|
-
Processing by AnonymousController#wcid as HTML
|
|
463
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
464
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
465
|
-
Processing by AnonymousController#wcid as HTML
|
|
466
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
467
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
468
|
-
Processing by AnonymousController#list as HTML
|
|
469
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
470
|
-
Processing by AnonymousController#wcid as HTML
|
|
471
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
472
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
473
|
-
Processing by AnonymousController#list as HTML
|
|
474
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
475
|
-
Processing by AnonymousController#wcid as HTML
|
|
476
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
477
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
478
|
-
Processing by AnonymousController#list as HTML
|
|
479
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
480
|
-
Processing by AnonymousController#wcid as HTML
|
|
481
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
482
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
483
|
-
Processing by AnonymousController#list as HTML
|
|
484
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
485
|
-
Processing by AnonymousController#wcid as HTML
|
|
486
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
487
|
-
Completed 400 Bad Request in 4ms (Views: 1.7ms)
|
|
488
|
-
Processing by AnonymousController#wcid as HTML
|
|
489
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
490
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
|
491
|
-
Processing by AnonymousController#wcid as HTML
|
|
492
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
493
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
494
|
-
Processing by AnonymousController#wcid as HTML
|
|
495
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
496
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
497
|
-
Processing by AnonymousController#list as HTML
|
|
498
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
499
|
-
Rendered text template (0.1ms)
|
|
500
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
501
|
-
Completed 403 Forbidden in 5ms (Views: 4.6ms)
|
|
502
|
-
Processing by AnonymousController#list as HTML
|
|
503
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
504
|
-
Processing by AnonymousController#list as HTML
|
|
505
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
506
|
-
Processing by AnonymousController#list as HTML
|
|
507
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
508
|
-
Rendered text template (0.0ms)
|
|
509
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
510
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
511
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
512
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
513
|
-
Rendered text template (0.0ms)
|
|
514
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
515
|
-
Processing by AnonymousController#list as HTML
|
|
516
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
517
|
-
Processing by AnonymousController#foobar as HTML
|
|
518
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
519
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
520
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
521
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
522
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
|
523
|
-
Processing by AnonymousController#foobar as HTML
|
|
524
|
-
Parameters: {"user"=>"foo"}
|
|
525
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
526
|
-
Processing by AnonymousController#wcid as HTML
|
|
527
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
528
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
529
|
-
Processing by AnonymousController#wcid as HTML
|
|
530
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
531
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
532
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
533
|
-
Processing by AnonymousController#wcid as HTML
|
|
534
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
535
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
536
|
-
Processing by AnonymousController#wcid as HTML
|
|
537
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
538
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
539
|
-
Processing by AnonymousController#wcid as HTML
|
|
540
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
541
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
542
|
-
Processing by AnonymousController#list as HTML
|
|
543
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
544
|
-
Processing by AnonymousController#wcid as HTML
|
|
545
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
546
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
547
|
-
Processing by AnonymousController#list as HTML
|
|
548
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
549
|
-
Processing by AnonymousController#wcid as HTML
|
|
550
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
551
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
552
|
-
Processing by AnonymousController#list as HTML
|
|
553
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
554
|
-
Processing by AnonymousController#wcid as HTML
|
|
555
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
556
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
557
|
-
Processing by AnonymousController#list as HTML
|
|
558
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
559
|
-
Processing by AnonymousController#list as HTML
|
|
560
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
561
|
-
Rendered text template (0.1ms)
|
|
562
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
563
|
-
Completed 403 Forbidden in 2ms (Views: 1.4ms)
|
|
564
|
-
Processing by AnonymousController#list as HTML
|
|
565
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
566
|
-
Processing by AnonymousController#list as HTML
|
|
567
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
568
|
-
Processing by AnonymousController#list as HTML
|
|
569
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
570
|
-
Rendered text template (0.0ms)
|
|
571
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
572
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
573
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
574
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
575
|
-
Rendered text template (0.1ms)
|
|
576
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
577
|
-
Processing by AnonymousController#list as HTML
|
|
578
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
|
579
|
-
Processing by AnonymousController#foobar as HTML
|
|
580
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
581
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
582
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
583
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
584
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
585
|
-
Processing by AnonymousController#foobar as HTML
|
|
586
|
-
Parameters: {"user"=>"foo"}
|
|
587
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
588
|
-
Processing by AnonymousController#wcid as HTML
|
|
589
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
590
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
591
|
-
Processing by AnonymousController#wcid as HTML
|
|
592
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
593
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
594
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
595
|
-
Processing by AnonymousController#wcid as HTML
|
|
596
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
597
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
|
598
|
-
Processing by AnonymousController#wcid as HTML
|
|
599
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
600
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
601
|
-
Processing by AnonymousController#wcid as HTML
|
|
602
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
603
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
604
|
-
Processing by AnonymousController#list as HTML
|
|
605
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
606
|
-
Processing by AnonymousController#wcid as HTML
|
|
607
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
608
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
609
|
-
Processing by AnonymousController#list as HTML
|
|
610
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
611
|
-
Processing by AnonymousController#wcid as HTML
|
|
612
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
613
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
614
|
-
Processing by AnonymousController#list as HTML
|
|
615
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
616
|
-
Processing by AnonymousController#wcid as HTML
|
|
617
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
618
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
619
|
-
Processing by AnonymousController#list as HTML
|
|
620
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
621
|
-
Processing by AnonymousController#wcid as HTML
|
|
622
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
623
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
|
624
|
-
Processing by AnonymousController#wcid as HTML
|
|
625
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
626
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
627
|
-
Processing by AnonymousController#wcid as HTML
|
|
628
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
629
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
630
|
-
Processing by AnonymousController#wcid as HTML
|
|
631
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
632
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
633
|
-
Processing by AnonymousController#wcid as HTML
|
|
634
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
635
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
636
|
-
Processing by AnonymousController#wcid as HTML
|
|
637
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
638
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
639
|
-
Processing by AnonymousController#wcid as HTML
|
|
640
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
641
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
642
|
-
Processing by AnonymousController#wcid as HTML
|
|
643
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
644
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
|
645
|
-
Processing by AnonymousController#wcid as HTML
|
|
646
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
647
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
648
|
-
Processing by AnonymousController#wcid as HTML
|
|
649
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
650
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
651
|
-
Processing by AnonymousController#wcid as HTML
|
|
652
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
653
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
|
654
|
-
Processing by AnonymousController#wcid as HTML
|
|
655
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
656
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
|
657
|
-
Processing by AnonymousController#list as HTML
|
|
658
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
659
|
-
Rendered text template (0.1ms)
|
|
660
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
661
|
-
Completed 403 Forbidden in 7ms (Views: 6.4ms)
|
|
662
|
-
Processing by AnonymousController#list as HTML
|
|
663
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
664
|
-
Processing by AnonymousController#list as HTML
|
|
665
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
666
|
-
Processing by AnonymousController#list as HTML
|
|
667
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
668
|
-
Rendered text template (0.1ms)
|
|
669
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
670
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
671
|
-
Processing by AnonymousController#list as HTML
|
|
672
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
673
|
-
Rendered text template (0.1ms)
|
|
674
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
675
|
-
Completed 403 Forbidden in 5ms (Views: 4.7ms)
|
|
676
|
-
Processing by AnonymousController#list as HTML
|
|
677
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
678
|
-
Processing by AnonymousController#list as HTML
|
|
679
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
680
|
-
Processing by AnonymousController#list as HTML
|
|
681
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
682
|
-
Rendered text template (0.1ms)
|
|
683
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
684
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
685
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
686
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
687
|
-
Rendered text template (0.1ms)
|
|
688
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
689
|
-
Processing by AnonymousController#list as HTML
|
|
690
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
691
|
-
Processing by AnonymousController#foobar as HTML
|
|
692
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
693
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
|
694
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
695
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
696
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
697
|
-
Processing by AnonymousController#foobar as HTML
|
|
698
|
-
Parameters: {"user"=>"foo"}
|
|
699
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
700
|
-
Processing by AnonymousController#wcid as HTML
|
|
701
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
702
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
703
|
-
Processing by AnonymousController#wcid as HTML
|
|
704
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
705
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
706
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
707
|
-
Processing by AnonymousController#wcid as HTML
|
|
708
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
709
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
710
|
-
Processing by AnonymousController#wcid as HTML
|
|
711
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
712
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
713
|
-
Processing by AnonymousController#wcid as HTML
|
|
714
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
715
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
716
|
-
Processing by AnonymousController#list as HTML
|
|
717
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
718
|
-
Processing by AnonymousController#wcid as HTML
|
|
719
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
720
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
721
|
-
Processing by AnonymousController#list as HTML
|
|
722
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
723
|
-
Processing by AnonymousController#wcid as HTML
|
|
724
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
725
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
726
|
-
Processing by AnonymousController#list as HTML
|
|
727
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
728
|
-
Processing by AnonymousController#wcid as HTML
|
|
729
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
730
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
731
|
-
Processing by AnonymousController#list as HTML
|
|
732
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
733
|
-
Processing by AnonymousController#list as HTML
|
|
734
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
735
|
-
Rendered text template (0.1ms)
|
|
736
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
737
|
-
Completed 403 Forbidden in 2ms (Views: 2.0ms)
|
|
738
|
-
Processing by AnonymousController#list as HTML
|
|
739
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
740
|
-
Processing by AnonymousController#list as HTML
|
|
741
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
742
|
-
Processing by AnonymousController#list as HTML
|
|
743
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
744
|
-
Rendered text template (0.1ms)
|
|
745
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
746
|
-
Completed 403 Forbidden in 1ms (Views: 0.5ms)
|
|
747
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
748
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
749
|
-
Rendered text template (0.1ms)
|
|
750
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
751
|
-
Processing by AnonymousController#list as HTML
|
|
752
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
753
|
-
Processing by AnonymousController#foobar as HTML
|
|
754
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
755
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
756
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
757
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
758
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
759
|
-
Processing by AnonymousController#foobar as HTML
|
|
760
|
-
Parameters: {"user"=>"foo"}
|
|
761
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
762
|
-
Processing by AnonymousController#wcid as HTML
|
|
763
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
764
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
765
|
-
Processing by AnonymousController#wcid as HTML
|
|
766
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
767
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
768
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
769
|
-
Processing by AnonymousController#wcid as HTML
|
|
770
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
771
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
772
|
-
Processing by AnonymousController#wcid as HTML
|
|
773
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
774
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
775
|
-
Processing by AnonymousController#wcid as HTML
|
|
776
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
777
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
778
|
-
Processing by AnonymousController#list as HTML
|
|
779
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
780
|
-
Processing by AnonymousController#wcid as HTML
|
|
781
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}
|
|
782
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
783
|
-
Processing by AnonymousController#list as HTML
|
|
784
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
785
|
-
Processing by AnonymousController#wcid as HTML
|
|
786
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}
|
|
787
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
788
|
-
Processing by AnonymousController#list as HTML
|
|
789
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
790
|
-
Processing by AnonymousController#wcid as HTML
|
|
791
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}
|
|
792
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
793
|
-
Processing by AnonymousController#list as HTML
|
|
794
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
795
|
-
Processing by AnonymousController#list as HTML
|
|
796
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
797
|
-
Rendered text template (0.1ms)
|
|
798
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
799
|
-
Completed 403 Forbidden in 7ms (Views: 6.2ms)
|
|
800
|
-
Processing by AnonymousController#list as HTML
|
|
801
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
802
|
-
Processing by AnonymousController#list as HTML
|
|
803
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
804
|
-
Processing by AnonymousController#list as HTML
|
|
805
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
806
|
-
Rendered text template (0.0ms)
|
|
807
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
808
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
809
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
810
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
811
|
-
Rendered text template (0.0ms)
|
|
812
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
813
|
-
Processing by AnonymousController#list as HTML
|
|
814
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
815
|
-
Processing by AnonymousController#foobar as HTML
|
|
816
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
817
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
818
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
819
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
820
|
-
Completed 404 Not Found in 1ms (Views: 0.3ms)
|
|
821
|
-
Processing by AnonymousController#foobar as HTML
|
|
822
|
-
Parameters: {"user"=>"foo"}
|
|
823
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
824
|
-
Processing by AnonymousController#wcid as HTML
|
|
825
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
826
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
827
|
-
Processing by AnonymousController#wcid as HTML
|
|
828
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
829
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
830
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
831
|
-
Processing by AnonymousController#wcid as HTML
|
|
832
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
833
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
834
|
-
Processing by AnonymousController#wcid as JSON
|
|
835
|
-
Parameters: {"params"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}}
|
|
836
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
837
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
838
|
-
Processing by AnonymousController#wcid as JSON
|
|
839
|
-
Parameters: {"params"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}}
|
|
840
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
841
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
842
|
-
Processing by AnonymousController#list as HTML
|
|
843
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
844
|
-
Processing by AnonymousController#wcid as JSON
|
|
845
|
-
Parameters: {"params"=>{"method"=>:wcid, "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
846
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
847
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
848
|
-
Processing by AnonymousController#list as HTML
|
|
849
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
850
|
-
Processing by AnonymousController#wcid as JSON
|
|
851
|
-
Parameters: {"params"=>{"method"=>:wcid, "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}}
|
|
852
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
853
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
854
|
-
Processing by AnonymousController#list as HTML
|
|
855
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
856
|
-
Processing by AnonymousController#wcid as JSON
|
|
857
|
-
Parameters: {"params"=>{"method"=>:wcid, "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}}
|
|
858
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
859
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
860
|
-
Processing by AnonymousController#list as HTML
|
|
861
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
862
|
-
Processing by AnonymousController#list as HTML
|
|
863
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
864
|
-
Rendered text template (0.1ms)
|
|
865
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
866
|
-
Completed 403 Forbidden in 2ms (Views: 1.4ms)
|
|
867
|
-
Processing by AnonymousController#list as HTML
|
|
868
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
869
|
-
Processing by AnonymousController#list as HTML
|
|
870
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
871
|
-
Processing by AnonymousController#list as HTML
|
|
872
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
873
|
-
Rendered text template (0.1ms)
|
|
874
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
875
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
876
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
877
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
878
|
-
Rendered text template (0.1ms)
|
|
879
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
880
|
-
Processing by AnonymousController#list as HTML
|
|
881
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
882
|
-
Processing by AnonymousController#foobar as HTML
|
|
883
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
884
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
885
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
886
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
887
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
888
|
-
Processing by AnonymousController#foobar as HTML
|
|
889
|
-
Parameters: {"user"=>"foo"}
|
|
890
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
891
|
-
Processing by AnonymousController#wcid as HTML
|
|
892
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
893
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
894
|
-
Processing by AnonymousController#wcid as HTML
|
|
895
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
896
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
897
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
898
|
-
Processing by AnonymousController#wcid as HTML
|
|
899
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
900
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
901
|
-
Processing by AnonymousController#wcid as JSON
|
|
902
|
-
Parameters: {"params"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}}
|
|
903
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
904
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
905
|
-
Processing by AnonymousController#wcid as JSON
|
|
906
|
-
Parameters: {"params"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}}
|
|
907
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
908
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
909
|
-
Processing by AnonymousController#list as HTML
|
|
910
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
911
|
-
Processing by AnonymousController#wcid as JSON
|
|
912
|
-
Parameters: {"params"=>{"method"=>:wcid, "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
913
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
914
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
915
|
-
Processing by AnonymousController#list as HTML
|
|
916
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
917
|
-
Processing by AnonymousController#wcid as JSON
|
|
918
|
-
Parameters: {"params"=>{"method"=>:wcid, "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}}
|
|
919
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
920
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
921
|
-
Processing by AnonymousController#list as HTML
|
|
922
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
923
|
-
Processing by AnonymousController#wcid as JSON
|
|
924
|
-
Parameters: {"params"=>{"method"=>:wcid, "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}}
|
|
925
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
926
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
927
|
-
Processing by AnonymousController#list as HTML
|
|
928
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
929
|
-
Processing by AnonymousController#list as HTML
|
|
930
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
931
|
-
Processing by AnonymousController#wcid as HTML
|
|
932
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
933
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
934
|
-
Processing by AnonymousController#list as HTML
|
|
935
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
936
|
-
Processing by AnonymousController#wcid as HTML
|
|
937
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
938
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
939
|
-
Processing by AnonymousController#list as HTML
|
|
940
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
941
|
-
Processing by AnonymousController#wcid as HTML
|
|
942
|
-
Parameters: {"anonymou"=>{}}
|
|
943
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
944
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
945
|
-
Processing by AnonymousController#list as HTML
|
|
946
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
947
|
-
Processing by AnonymousController#wcid as HTML
|
|
948
|
-
Parameters: {"anonymou"=>{}}
|
|
949
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
950
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
951
|
-
Processing by AnonymousController#list as HTML
|
|
952
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
953
|
-
Processing by AnonymousController#wcid as HTML
|
|
954
|
-
Parameters: {"anonymou"=>{}}
|
|
955
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
956
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
957
|
-
Processing by AnonymousController#list as HTML
|
|
958
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
959
|
-
Processing by AnonymousController#list as HTML
|
|
960
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
961
|
-
Processing by AnonymousController#wcid as JSON
|
|
962
|
-
Parameters: {"body"=>"{\"method\":\"wcid\",\"room_id\":\"123\",\"user\":\"bhuga\",\"params\":{\"app\":\"foobar\"}}", "anonymou"=>{"body"=>"{\"method\":\"wcid\",\"room_id\":\"123\",\"user\":\"bhuga\",\"params\":{\"app\":\"foobar\"}}"}}
|
|
963
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
964
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
965
|
-
Processing by AnonymousController#list as HTML
|
|
966
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
967
|
-
Processing by AnonymousController#wcid as JSON
|
|
968
|
-
Parameters: {"body"=>"{\"method\":\"wcid\",\"room_id\":\"123\",\"user\":\"bhuga\",\"params\":{\"app\":\"foobar\"}}", "anonymou"=>{"body"=>"{\"method\":\"wcid\",\"room_id\":\"123\",\"user\":\"bhuga\",\"params\":{\"app\":\"foobar\"}}"}}
|
|
969
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
970
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
|
971
|
-
Processing by AnonymousController#list as HTML
|
|
972
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
973
|
-
Processing by AnonymousController#wcid as HTML
|
|
974
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
975
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
976
|
-
Processing by AnonymousController#list as HTML
|
|
977
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
978
|
-
Processing by AnonymousController#wcid as HTML
|
|
979
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
980
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
981
|
-
Processing by AnonymousController#list as HTML
|
|
982
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
983
|
-
Rendered text template (0.5ms)
|
|
984
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
985
|
-
Completed 403 Forbidden in 9ms (Views: 8.9ms)
|
|
986
|
-
Processing by AnonymousController#list as HTML
|
|
987
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
988
|
-
Rendered text template (0.1ms)
|
|
989
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
990
|
-
Completed 403 Forbidden in 5ms (Views: 4.8ms)
|
|
991
|
-
Processing by AnonymousController#list as HTML
|
|
992
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
993
|
-
Processing by AnonymousController#list as HTML
|
|
994
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
995
|
-
Processing by AnonymousController#list as HTML
|
|
996
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
997
|
-
Rendered text template (0.1ms)
|
|
998
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
999
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
1000
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1001
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1002
|
-
Rendered text template (0.1ms)
|
|
1003
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
1004
|
-
Processing by AnonymousController#list as HTML
|
|
1005
|
-
Completed 200 OK in 2ms (Views: 1.3ms)
|
|
1006
|
-
Processing by AnonymousController#foobar as HTML
|
|
1007
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
1008
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
1009
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
1010
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
1011
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
1012
|
-
Processing by AnonymousController#foobar as HTML
|
|
1013
|
-
Parameters: {"user"=>"foo"}
|
|
1014
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1015
|
-
Processing by AnonymousController#wcid as HTML
|
|
1016
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
1017
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1018
|
-
Processing by AnonymousController#wcid as HTML
|
|
1019
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
1020
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
1021
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
|
1022
|
-
Processing by AnonymousController#wcid as HTML
|
|
1023
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
1024
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
1025
|
-
Processing by AnonymousController#wcid as HTML
|
|
1026
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}}
|
|
1027
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1028
|
-
Processing by AnonymousController#wcid as HTML
|
|
1029
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}}
|
|
1030
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
1031
|
-
Processing by AnonymousController#list as HTML
|
|
1032
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1033
|
-
Processing by AnonymousController#wcid as HTML
|
|
1034
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1035
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1036
|
-
Processing by AnonymousController#list as HTML
|
|
1037
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1038
|
-
Processing by AnonymousController#wcid as HTML
|
|
1039
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}}
|
|
1040
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1041
|
-
Processing by AnonymousController#list as HTML
|
|
1042
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
1043
|
-
Processing by AnonymousController#wcid as HTML
|
|
1044
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}}
|
|
1045
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1046
|
-
Processing by AnonymousController#list as HTML
|
|
1047
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1048
|
-
Processing by AnonymousController#list as HTML
|
|
1049
|
-
Completed 500 Internal Server Error in 4ms
|
|
1050
|
-
Processing by AnonymousController#list as HTML
|
|
1051
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1052
|
-
Rendered text template (0.1ms)
|
|
1053
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1054
|
-
Completed 403 Forbidden in 9ms (Views: 8.6ms)
|
|
1055
|
-
Processing by AnonymousController#list as HTML
|
|
1056
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1057
|
-
Rendered text template (0.1ms)
|
|
1058
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1059
|
-
Completed 403 Forbidden in 6ms (Views: 5.1ms)
|
|
1060
|
-
Processing by AnonymousController#list as HTML
|
|
1061
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1062
|
-
Rendered text template (0.1ms)
|
|
1063
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1064
|
-
Completed 403 Forbidden in 5ms (Views: 4.7ms)
|
|
1065
|
-
Processing by AnonymousController#list as HTML
|
|
1066
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1067
|
-
Rendered text template (0.1ms)
|
|
1068
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1069
|
-
Completed 403 Forbidden in 9ms (Views: 8.1ms)
|
|
1070
|
-
Processing by AnonymousController#list as HTML
|
|
1071
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1072
|
-
Rendered text template (0.1ms)
|
|
1073
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1074
|
-
Completed 403 Forbidden in 6ms (Views: 5.7ms)
|
|
1075
|
-
Processing by AnonymousController#list as HTML
|
|
1076
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1077
|
-
Rendered text template (0.1ms)
|
|
1078
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1079
|
-
Completed 403 Forbidden in 5ms (Views: 4.8ms)
|
|
1080
|
-
Processing by AnonymousController#list as HTML
|
|
1081
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1082
|
-
Processing by AnonymousController#list as HTML
|
|
1083
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1084
|
-
Processing by AnonymousController#list as HTML
|
|
1085
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1086
|
-
Processing by AnonymousController#list as HTML
|
|
1087
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1088
|
-
Processing by AnonymousController#list as HTML
|
|
1089
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1090
|
-
Processing by AnonymousController#foobar as HTML
|
|
1091
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1092
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1093
|
-
Rendered text template (0.1ms)
|
|
1094
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1095
|
-
Completed 403 Forbidden in 7ms (Views: 7.2ms)
|
|
1096
|
-
Processing by AnonymousController#list as HTML
|
|
1097
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
1098
|
-
Processing by AnonymousController#foobar as HTML
|
|
1099
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1100
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1101
|
-
Rendered text template (0.1ms)
|
|
1102
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1103
|
-
Completed 403 Forbidden in 5ms (Views: 4.7ms)
|
|
1104
|
-
Processing by AnonymousController#list as HTML
|
|
1105
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1106
|
-
Processing by AnonymousController#foobar as HTML
|
|
1107
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1108
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1109
|
-
Rendered text template (0.1ms)
|
|
1110
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1111
|
-
Completed 403 Forbidden in 5ms (Views: 4.7ms)
|
|
1112
|
-
Processing by AnonymousController#list as HTML
|
|
1113
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1114
|
-
Processing by AnonymousController#foobar as HTML
|
|
1115
|
-
Parameters: {"anonymou"=>{}}
|
|
1116
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
1117
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
|
1118
|
-
Processing by AnonymousController#list as HTML
|
|
1119
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1120
|
-
Processing by AnonymousController#foobar as HTML
|
|
1121
|
-
Parameters: {"anonymou"=>{}}
|
|
1122
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
1123
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
|
1124
|
-
Processing by AnonymousController#list as HTML
|
|
1125
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1126
|
-
Processing by AnonymousController#foobar as HTML
|
|
1127
|
-
Parameters: {"anonymou"=>{}}
|
|
1128
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
1129
|
-
Completed 400 Bad Request in 1ms (Views: 0.3ms)
|
|
1130
|
-
Processing by AnonymousController#list as HTML
|
|
1131
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
1132
|
-
Processing by AnonymousController#foobar as HTML
|
|
1133
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1134
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1135
|
-
Processing by AnonymousController#list as HTML
|
|
1136
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
1137
|
-
Processing by AnonymousController#foobar as HTML
|
|
1138
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1139
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1140
|
-
Processing by AnonymousController#list as HTML
|
|
1141
|
-
Completed 200 OK in 2ms (Views: 1.0ms)
|
|
1142
|
-
Processing by AnonymousController#foobar as HTML
|
|
1143
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1144
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1145
|
-
Processing by AnonymousController#list as HTML
|
|
1146
|
-
Completed 500 Internal Server Error in 0ms
|
|
1147
|
-
Processing by AnonymousController#list as HTML
|
|
1148
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1149
|
-
Processing by AnonymousController#foobar as HTML
|
|
1150
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1151
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1152
|
-
Processing by AnonymousController#list as HTML
|
|
1153
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1154
|
-
Rendered text template (0.1ms)
|
|
1155
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1156
|
-
Completed 403 Forbidden in 7ms (Views: 7.1ms)
|
|
1157
|
-
Processing by AnonymousController#list as HTML
|
|
1158
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1159
|
-
Processing by AnonymousController#foobar as HTML
|
|
1160
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1161
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1162
|
-
Processing by AnonymousController#list as HTML
|
|
1163
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1164
|
-
Rendered text template (0.1ms)
|
|
1165
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1166
|
-
Completed 403 Forbidden in 5ms (Views: 4.6ms)
|
|
1167
|
-
Processing by AnonymousController#list as HTML
|
|
1168
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1169
|
-
Rendered text template (0.1ms)
|
|
1170
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1171
|
-
Completed 403 Forbidden in 6ms (Views: 5.2ms)
|
|
1172
|
-
Processing by AnonymousController#list as HTML
|
|
1173
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1174
|
-
Rendered text template (0.1ms)
|
|
1175
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1176
|
-
Completed 403 Forbidden in 5ms (Views: 4.9ms)
|
|
1177
|
-
Processing by AnonymousController#list as HTML
|
|
1178
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1179
|
-
Processing by AnonymousController#list as HTML
|
|
1180
|
-
Completed 500 Internal Server Error in 0ms
|
|
1181
|
-
Processing by AnonymousController#list as HTML
|
|
1182
|
-
Completed 500 Internal Server Error in 0ms
|
|
1183
|
-
Processing by AnonymousController#list as HTML
|
|
1184
|
-
Completed 500 Internal Server Error in 0ms
|
|
1185
|
-
Processing by AnonymousController#list as HTML
|
|
1186
|
-
Completed 500 Internal Server Error in 0ms
|
|
1187
|
-
Processing by AnonymousController#list as HTML
|
|
1188
|
-
Completed 500 Internal Server Error in 0ms
|
|
1189
|
-
Processing by AnonymousController#list as HTML
|
|
1190
|
-
Completed 500 Internal Server Error in 0ms
|
|
1191
|
-
Processing by AnonymousController#list as HTML
|
|
1192
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1193
|
-
Rendered text template (0.1ms)
|
|
1194
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1195
|
-
Completed 403 Forbidden in 8ms (Views: 7.1ms)
|
|
1196
|
-
Processing by AnonymousController#list as HTML
|
|
1197
|
-
Completed 500 Internal Server Error in 0ms
|
|
1198
|
-
Processing by AnonymousController#list as HTML
|
|
1199
|
-
Completed 500 Internal Server Error in 0ms
|
|
1200
|
-
Processing by AnonymousController#list as HTML
|
|
1201
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1202
|
-
Rendered text template (0.1ms)
|
|
1203
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1204
|
-
Completed 403 Forbidden in 8ms (Views: 7.4ms)
|
|
1205
|
-
Processing by AnonymousController#list as HTML
|
|
1206
|
-
Completed 500 Internal Server Error in 0ms
|
|
1207
|
-
Processing by AnonymousController#list as HTML
|
|
1208
|
-
Completed 500 Internal Server Error in 4ms
|
|
1209
|
-
Processing by AnonymousController#list as HTML
|
|
1210
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1211
|
-
Rendered text template (0.1ms)
|
|
1212
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1213
|
-
Completed 403 Forbidden in 5ms (Views: 4.8ms)
|
|
1214
|
-
Processing by AnonymousController#list as HTML
|
|
1215
|
-
Completed 500 Internal Server Error in 0ms
|
|
1216
|
-
Processing by AnonymousController#list as HTML
|
|
1217
|
-
Completed 500 Internal Server Error in 2ms
|
|
1218
|
-
Processing by AnonymousController#list as HTML
|
|
1219
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1220
|
-
Rendered text template (0.1ms)
|
|
1221
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1222
|
-
Completed 403 Forbidden in 6ms (Views: 5.6ms)
|
|
1223
|
-
Processing by AnonymousController#list as HTML
|
|
1224
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
1225
|
-
Processing by AnonymousController#list as HTML
|
|
1226
|
-
Completed 500 Internal Server Error in 0ms
|
|
1227
|
-
Processing by AnonymousController#list as HTML
|
|
1228
|
-
Completed 500 Internal Server Error in 2ms
|
|
1229
|
-
Processing by AnonymousController#list as HTML
|
|
1230
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1231
|
-
Rendered text template (0.1ms)
|
|
1232
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1233
|
-
Completed 403 Forbidden in 5ms (Views: 4.9ms)
|
|
1234
|
-
Processing by AnonymousController#list as HTML
|
|
1235
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1236
|
-
Processing by AnonymousController#list as HTML
|
|
1237
|
-
Completed 500 Internal Server Error in 1ms
|
|
1238
|
-
Processing by AnonymousController#list as HTML
|
|
1239
|
-
Completed 500 Internal Server Error in 2ms
|
|
1240
|
-
Processing by AnonymousController#list as HTML
|
|
1241
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1242
|
-
Rendered text template (0.1ms)
|
|
1243
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1244
|
-
Completed 403 Forbidden in 12ms (Views: 11.2ms)
|
|
1245
|
-
Processing by AnonymousController#list as HTML
|
|
1246
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
1247
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1248
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1249
|
-
Rendered text template (0.0ms)
|
|
1250
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1251
|
-
Processing by AnonymousController#list as HTML
|
|
1252
|
-
Completed 500 Internal Server Error in 0ms
|
|
1253
|
-
Processing by AnonymousController#list as HTML
|
|
1254
|
-
Completed 500 Internal Server Error in 1ms
|
|
1255
|
-
Processing by AnonymousController#list as HTML
|
|
1256
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1257
|
-
Rendered text template (0.1ms)
|
|
1258
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1259
|
-
Completed 403 Forbidden in 6ms (Views: 5.1ms)
|
|
1260
|
-
Processing by AnonymousController#list as HTML
|
|
1261
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1262
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1263
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1264
|
-
Rendered text template (0.0ms)
|
|
1265
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1266
|
-
Processing by AnonymousController#list as HTML
|
|
1267
|
-
Completed 200 OK in 1487ms (Views: 0.5ms)
|
|
1268
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1269
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1270
|
-
Rendered text template (0.1ms)
|
|
1271
|
-
Completed 200 OK in 5ms (Views: 4.8ms)
|
|
1272
|
-
Processing by AnonymousController#list as HTML
|
|
1273
|
-
Completed 200 OK in 146704ms (Views: 0.4ms)
|
|
1274
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1275
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1276
|
-
Rendered text template (0.1ms)
|
|
1277
|
-
Completed 200 OK in 5ms (Views: 5.4ms)
|
|
1278
|
-
Processing by AnonymousController#list as HTML
|
|
1279
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1280
|
-
Rendered text template (0.1ms)
|
|
1281
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1282
|
-
Completed 403 Forbidden in 6ms (Views: 4.7ms)
|
|
1283
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1284
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1285
|
-
Rendered text template (0.0ms)
|
|
1286
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1287
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1288
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1289
|
-
Rendered text template (0.1ms)
|
|
1290
|
-
Completed 200 OK in 5ms (Views: 4.8ms)
|
|
1291
|
-
Processing by AnonymousController#list as HTML
|
|
1292
|
-
Completed 500 Internal Server Error in 0ms
|
|
1293
|
-
Processing by AnonymousController#list as HTML
|
|
1294
|
-
Completed 200 OK in 2ms (Views: 0.4ms)
|
|
1295
|
-
Processing by AnonymousController#foobar as HTML
|
|
1296
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1297
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1298
|
-
Processing by AnonymousController#list as HTML
|
|
1299
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1300
|
-
Processing by AnonymousController#list as HTML
|
|
1301
|
-
Completed 500 Internal Server Error in 0ms
|
|
1302
|
-
Processing by AnonymousController#list as HTML
|
|
1303
|
-
Completed 500 Internal Server Error in 1ms
|
|
1304
|
-
Processing by AnonymousController#list as HTML
|
|
1305
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1306
|
-
Rendered text template (0.1ms)
|
|
1307
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1308
|
-
Completed 403 Forbidden in 6ms (Views: 5.2ms)
|
|
1309
|
-
Processing by AnonymousController#list as HTML
|
|
1310
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1311
|
-
Rendered text template (0.0ms)
|
|
1312
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1313
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1314
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1315
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1316
|
-
Rendered text template (0.1ms)
|
|
1317
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
1318
|
-
Processing by AnonymousController#list as HTML
|
|
1319
|
-
Completed 500 Internal Server Error in 0ms
|
|
1320
|
-
Processing by AnonymousController#foobar as HTML
|
|
1321
|
-
Completed 500 Internal Server Error in 0ms
|
|
1322
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
1323
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
1324
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
1325
|
-
Processing by AnonymousController#foobar as HTML
|
|
1326
|
-
Parameters: {"user"=>"foo"}
|
|
1327
|
-
Completed 500 Internal Server Error in 0ms
|
|
1328
|
-
Processing by AnonymousController#wcid as HTML
|
|
1329
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
1330
|
-
Completed 500 Internal Server Error in 0ms
|
|
1331
|
-
Processing by AnonymousController#wcid as HTML
|
|
1332
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
1333
|
-
Completed 500 Internal Server Error in 0ms
|
|
1334
|
-
Processing by AnonymousController#wcid as HTML
|
|
1335
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
1336
|
-
Completed 500 Internal Server Error in 0ms
|
|
1337
|
-
Processing by AnonymousController#wcid as HTML
|
|
1338
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}}
|
|
1339
|
-
Completed 500 Internal Server Error in 0ms
|
|
1340
|
-
Processing by AnonymousController#wcid as HTML
|
|
1341
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}}
|
|
1342
|
-
Completed 500 Internal Server Error in 0ms
|
|
1343
|
-
Processing by AnonymousController#list as HTML
|
|
1344
|
-
Completed 500 Internal Server Error in 0ms
|
|
1345
|
-
Processing by AnonymousController#list as HTML
|
|
1346
|
-
Completed 500 Internal Server Error in 0ms
|
|
1347
|
-
Processing by AnonymousController#list as HTML
|
|
1348
|
-
Completed 500 Internal Server Error in 0ms
|
|
1349
|
-
Processing by AnonymousController#list as HTML
|
|
1350
|
-
Completed 500 Internal Server Error in 0ms
|
|
1351
|
-
Processing by AnonymousController#list as HTML
|
|
1352
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1353
|
-
Rendered text template (0.1ms)
|
|
1354
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1355
|
-
Completed 403 Forbidden in 6ms (Views: 5.6ms)
|
|
1356
|
-
Processing by AnonymousController#list as HTML
|
|
1357
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
|
1358
|
-
Processing by AnonymousController#foobar as HTML
|
|
1359
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1360
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1361
|
-
Processing by AnonymousController#list as HTML
|
|
1362
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1363
|
-
Processing by AnonymousController#list as HTML
|
|
1364
|
-
Completed 500 Internal Server Error in 0ms
|
|
1365
|
-
Processing by AnonymousController#list as HTML
|
|
1366
|
-
Completed 500 Internal Server Error in 0ms
|
|
1367
|
-
Processing by AnonymousController#list as HTML
|
|
1368
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1369
|
-
Rendered text template (0.1ms)
|
|
1370
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1371
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1372
|
-
Processing by AnonymousController#list as HTML
|
|
1373
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1374
|
-
Rendered text template (0.0ms)
|
|
1375
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1376
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1377
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1378
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1379
|
-
Rendered text template (0.0ms)
|
|
1380
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1381
|
-
Processing by AnonymousController#list as HTML
|
|
1382
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1383
|
-
Rendered text template (0.1ms)
|
|
1384
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1385
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
1386
|
-
Processing by AnonymousController#foobar as HTML
|
|
1387
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1388
|
-
Rendered text template (0.1ms)
|
|
1389
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1390
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1391
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
1392
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
1393
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
1394
|
-
Processing by AnonymousController#foobar as HTML
|
|
1395
|
-
Parameters: {"user"=>"foo"}
|
|
1396
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1397
|
-
Rendered text template (0.1ms)
|
|
1398
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1399
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1400
|
-
Processing by AnonymousController#wcid as HTML
|
|
1401
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
1402
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1403
|
-
Rendered text template (0.0ms)
|
|
1404
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1405
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1406
|
-
Processing by AnonymousController#wcid as HTML
|
|
1407
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
1408
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1409
|
-
Rendered text template (0.1ms)
|
|
1410
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1411
|
-
Completed 403 Forbidden in 1ms (Views: 0.6ms)
|
|
1412
|
-
Processing by AnonymousController#wcid as HTML
|
|
1413
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
1414
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1415
|
-
Rendered text template (0.0ms)
|
|
1416
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1417
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1418
|
-
Processing by AnonymousController#wcid as HTML
|
|
1419
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}}
|
|
1420
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1421
|
-
Rendered text template (0.1ms)
|
|
1422
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1423
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1424
|
-
Processing by AnonymousController#wcid as HTML
|
|
1425
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}}
|
|
1426
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1427
|
-
Rendered text template (0.1ms)
|
|
1428
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1429
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1430
|
-
Processing by AnonymousController#list as HTML
|
|
1431
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1432
|
-
Rendered text template (0.1ms)
|
|
1433
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1434
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
1435
|
-
Processing by AnonymousController#list as HTML
|
|
1436
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1437
|
-
Rendered text template (0.1ms)
|
|
1438
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1439
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1440
|
-
Processing by AnonymousController#list as HTML
|
|
1441
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1442
|
-
Rendered text template (0.0ms)
|
|
1443
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1444
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1445
|
-
Processing by AnonymousController#list as HTML
|
|
1446
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1447
|
-
Rendered text template (0.0ms)
|
|
1448
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1449
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1450
|
-
Processing by AnonymousController#list as HTML
|
|
1451
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1452
|
-
Rendered text template (0.1ms)
|
|
1453
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1454
|
-
Completed 403 Forbidden in 5ms (Views: 5.0ms)
|
|
1455
|
-
Processing by AnonymousController#list as HTML
|
|
1456
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1457
|
-
Rendered text template (0.1ms)
|
|
1458
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1459
|
-
Completed 403 Forbidden in 7ms (Views: 5.0ms)
|
|
1460
|
-
Processing by AnonymousController#list as HTML
|
|
1461
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1462
|
-
Rendered text template (0.1ms)
|
|
1463
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1464
|
-
Completed 403 Forbidden in 7ms (Views: 4.8ms)
|
|
1465
|
-
Processing by AnonymousController#list as HTML
|
|
1466
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1467
|
-
Processing by AnonymousController#foobar as HTML
|
|
1468
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1469
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1470
|
-
Processing by AnonymousController#list as HTML
|
|
1471
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1472
|
-
Processing by AnonymousController#list as HTML
|
|
1473
|
-
Completed 500 Internal Server Error in 0ms
|
|
1474
|
-
Processing by AnonymousController#list as HTML
|
|
1475
|
-
Completed 500 Internal Server Error in 0ms
|
|
1476
|
-
Processing by AnonymousController#list as HTML
|
|
1477
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1478
|
-
Rendered text template (0.0ms)
|
|
1479
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1480
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1481
|
-
Processing by AnonymousController#list as HTML
|
|
1482
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1483
|
-
Rendered text template (0.0ms)
|
|
1484
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1485
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1486
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1487
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1488
|
-
Rendered text template (0.0ms)
|
|
1489
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
1490
|
-
Processing by AnonymousController#list as HTML
|
|
1491
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1492
|
-
Rendered text template (0.0ms)
|
|
1493
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1494
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
1495
|
-
Processing by AnonymousController#foobar as HTML
|
|
1496
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1497
|
-
Rendered text template (0.1ms)
|
|
1498
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1499
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1500
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
1501
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
1502
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
1503
|
-
Processing by AnonymousController#foobar as HTML
|
|
1504
|
-
Parameters: {"user"=>"foo"}
|
|
1505
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1506
|
-
Rendered text template (0.1ms)
|
|
1507
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1508
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1509
|
-
Processing by AnonymousController#wcid as HTML
|
|
1510
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
1511
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1512
|
-
Rendered text template (0.0ms)
|
|
1513
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1514
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1515
|
-
Processing by AnonymousController#wcid as HTML
|
|
1516
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
1517
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1518
|
-
Rendered text template (0.0ms)
|
|
1519
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1520
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1521
|
-
Processing by AnonymousController#wcid as HTML
|
|
1522
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
1523
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1524
|
-
Rendered text template (0.1ms)
|
|
1525
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1526
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
1527
|
-
Processing by AnonymousController#wcid as HTML
|
|
1528
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}}
|
|
1529
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1530
|
-
Rendered text template (0.0ms)
|
|
1531
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1532
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1533
|
-
Processing by AnonymousController#wcid as HTML
|
|
1534
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}}
|
|
1535
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1536
|
-
Rendered text template (0.0ms)
|
|
1537
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1538
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
1539
|
-
Processing by AnonymousController#list as HTML
|
|
1540
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1541
|
-
Rendered text template (0.1ms)
|
|
1542
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1543
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
1544
|
-
Processing by AnonymousController#list as HTML
|
|
1545
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1546
|
-
Rendered text template (0.1ms)
|
|
1547
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1548
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
1549
|
-
Processing by AnonymousController#list as HTML
|
|
1550
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1551
|
-
Rendered text template (0.0ms)
|
|
1552
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1553
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1554
|
-
Processing by AnonymousController#list as HTML
|
|
1555
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1556
|
-
Rendered text template (0.0ms)
|
|
1557
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1558
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
1559
|
-
Processing by AnonymousController#list as HTML
|
|
1560
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1561
|
-
Rendered text template (0.1ms)
|
|
1562
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1563
|
-
Completed 403 Forbidden in 7ms (Views: 6.7ms)
|
|
1564
|
-
Processing by AnonymousController#list as HTML
|
|
1565
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1566
|
-
Rendered text template (0.1ms)
|
|
1567
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1568
|
-
Completed 403 Forbidden in 5ms (Views: 4.7ms)
|
|
1569
|
-
Processing by AnonymousController#list as HTML
|
|
1570
|
-
Parameters: {"anonymou"=>{}}
|
|
1571
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1572
|
-
Rendered text template (0.1ms)
|
|
1573
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1574
|
-
Completed 403 Forbidden in 8ms (Views: 5.8ms)
|
|
1575
|
-
Processing by AnonymousController#list as HTML
|
|
1576
|
-
Parameters: {"anonymou"=>{}}
|
|
1577
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1578
|
-
Rendered text template (0.1ms)
|
|
1579
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1580
|
-
Completed 403 Forbidden in 6ms (Views: 4.7ms)
|
|
1581
|
-
Processing by AnonymousController#list as HTML
|
|
1582
|
-
Parameters: {"anonymou"=>{}}
|
|
1583
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1584
|
-
Rendered text template (0.1ms)
|
|
1585
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1586
|
-
Completed 403 Forbidden in 7ms (Views: 4.9ms)
|
|
1587
|
-
Processing by AnonymousController#list as HTML
|
|
1588
|
-
Parameters: {"anonymou"=>{}}
|
|
1589
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1590
|
-
Rendered text template (0.1ms)
|
|
1591
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1592
|
-
Completed 403 Forbidden in 7ms (Views: 5.5ms)
|
|
1593
|
-
Processing by AnonymousController#list as HTML
|
|
1594
|
-
Parameters: {"anonymou"=>{}}
|
|
1595
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1596
|
-
Rendered text template (0.1ms)
|
|
1597
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1598
|
-
Completed 403 Forbidden in 10449ms (Views: 7.2ms)
|
|
1599
|
-
Processing by AnonymousController#list as HTML
|
|
1600
|
-
Parameters: {"anonymou"=>{}}
|
|
1601
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1602
|
-
Rendered text template (0.1ms)
|
|
1603
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1604
|
-
Completed 403 Forbidden in 13ms (Views: 10.5ms)
|
|
1605
|
-
Processing by AnonymousController#list as HTML
|
|
1606
|
-
Parameters: {"anonymou"=>{}}
|
|
1607
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1608
|
-
Rendered text template (0.1ms)
|
|
1609
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1610
|
-
Completed 403 Forbidden in 11ms (Views: 8.5ms)
|
|
1611
|
-
Processing by AnonymousController#list as HTML
|
|
1612
|
-
Parameters: {"anonymou"=>{}}
|
|
1613
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1614
|
-
Rendered text template (0.1ms)
|
|
1615
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1616
|
-
Completed 403 Forbidden in 12ms (Views: 10.3ms)
|
|
1617
|
-
Processing by AnonymousController#list as HTML
|
|
1618
|
-
Parameters: {"anonymou"=>{}}
|
|
1619
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
|
1620
|
-
Processing by AnonymousController#wcid as HTML
|
|
1621
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1622
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1623
|
-
Rendered text template (0.1ms)
|
|
1624
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1625
|
-
Completed 403 Forbidden in 6ms (Views: 5.2ms)
|
|
1626
|
-
Processing by AnonymousController#wcid as HTML
|
|
1627
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1628
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1629
|
-
Rendered text template (0.0ms)
|
|
1630
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1631
|
-
Completed 403 Forbidden in 1ms (Views: 0.2ms)
|
|
1632
|
-
Processing by AnonymousController#list as HTML
|
|
1633
|
-
Parameters: {"anonymou"=>{}}
|
|
1634
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
|
1635
|
-
Processing by AnonymousController#wcid as HTML
|
|
1636
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1637
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1638
|
-
Rendered text template (0.1ms)
|
|
1639
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1640
|
-
Completed 403 Forbidden in 5ms (Views: 4.9ms)
|
|
1641
|
-
Processing by AnonymousController#wcid as HTML
|
|
1642
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1643
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1644
|
-
Rendered text template (0.0ms)
|
|
1645
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1646
|
-
Completed 403 Forbidden in 1ms (Views: 0.2ms)
|
|
1647
|
-
Processing by AnonymousController#list as HTML
|
|
1648
|
-
Parameters: {"anonymou"=>{}}
|
|
1649
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
|
1650
|
-
Processing by AnonymousController#wcid as HTML
|
|
1651
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1652
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1653
|
-
Rendered text template (0.1ms)
|
|
1654
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1655
|
-
Completed 403 Forbidden in 5ms (Views: 4.7ms)
|
|
1656
|
-
Processing by AnonymousController#wcid as HTML
|
|
1657
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1658
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1659
|
-
Rendered text template (0.1ms)
|
|
1660
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1661
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1662
|
-
Processing by AnonymousController#list as HTML
|
|
1663
|
-
Parameters: {"anonymou"=>{}}
|
|
1664
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
|
1665
|
-
Processing by AnonymousController#wcid as HTML
|
|
1666
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1667
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1668
|
-
Rendered text template (0.1ms)
|
|
1669
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1670
|
-
Completed 403 Forbidden in 5ms (Views: 4.9ms)
|
|
1671
|
-
Processing by AnonymousController#wcid as HTML
|
|
1672
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1673
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1674
|
-
Rendered text template (0.1ms)
|
|
1675
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1676
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1677
|
-
Processing by AnonymousController#list as HTML
|
|
1678
|
-
Parameters: {"anonymou"=>{}}
|
|
1679
|
-
Completed 200 OK in 5227ms (Views: 0.4ms)
|
|
1680
|
-
Processing by AnonymousController#wcid as HTML
|
|
1681
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1682
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1683
|
-
Rendered text template (0.2ms)
|
|
1684
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1685
|
-
Completed 403 Forbidden in 19163ms (Views: 8.9ms)
|
|
1686
|
-
Processing by AnonymousController#wcid as HTML
|
|
1687
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1688
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1689
|
-
Rendered text template (0.1ms)
|
|
1690
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1691
|
-
Completed 403 Forbidden in 7518ms (Views: 0.4ms)
|
|
1692
|
-
Processing by AnonymousController#list as HTML
|
|
1693
|
-
Parameters: {"anonymou"=>{}}
|
|
1694
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
|
1695
|
-
Processing by AnonymousController#wcid as HTML
|
|
1696
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1697
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1698
|
-
Rendered text template (0.1ms)
|
|
1699
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1700
|
-
Completed 403 Forbidden in 5ms (Views: 4.9ms)
|
|
1701
|
-
Processing by AnonymousController#wcid as HTML
|
|
1702
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1703
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1704
|
-
Rendered text template (0.0ms)
|
|
1705
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1706
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1707
|
-
Processing by AnonymousController#list as HTML
|
|
1708
|
-
Parameters: {"anonymou"=>{}}
|
|
1709
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
|
1710
|
-
Processing by AnonymousController#wcid as HTML
|
|
1711
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1712
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1713
|
-
Rendered text template (0.1ms)
|
|
1714
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1715
|
-
Completed 403 Forbidden in 5ms (Views: 4.7ms)
|
|
1716
|
-
Processing by AnonymousController#wcid as HTML
|
|
1717
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1718
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1719
|
-
Rendered text template (0.1ms)
|
|
1720
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1721
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1722
|
-
Processing by AnonymousController#list as HTML
|
|
1723
|
-
Parameters: {"anonymou"=>{}}
|
|
1724
|
-
Completed 200 OK in 2ms (Views: 0.3ms)
|
|
1725
|
-
Processing by AnonymousController#wcid as HTML
|
|
1726
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1727
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1728
|
-
Rendered text template (0.1ms)
|
|
1729
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1730
|
-
Completed 403 Forbidden in 5ms (Views: 4.9ms)
|
|
1731
|
-
Processing by AnonymousController#list as HTML
|
|
1732
|
-
Parameters: {"anonymou"=>{}}
|
|
1733
|
-
Completed 200 OK in 5669ms (Views: 0.6ms)
|
|
1734
|
-
Processing by AnonymousController#wcid as HTML
|
|
1735
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1736
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1737
|
-
Rendered text template (0.2ms)
|
|
1738
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1739
|
-
Completed 403 Forbidden in 265819ms (Views: 11.8ms)
|
|
1740
|
-
Processing by AnonymousController#list as HTML
|
|
1741
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
1742
|
-
Processing by AnonymousController#wcid as HTML
|
|
1743
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1744
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1745
|
-
Processing by AnonymousController#list as HTML
|
|
1746
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1747
|
-
Rendered text template (0.1ms)
|
|
1748
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1749
|
-
Completed 403 Forbidden in 7ms (Views: 5.3ms)
|
|
1750
|
-
Processing by AnonymousController#list as HTML
|
|
1751
|
-
Completed 200 OK in 1630ms (Views: 0.6ms)
|
|
1752
|
-
Processing by AnonymousController#foobar as HTML
|
|
1753
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1754
|
-
Completed 200 OK in 1357ms (Views: 0.2ms)
|
|
1755
|
-
Processing by AnonymousController#list as HTML
|
|
1756
|
-
Processing by AnonymousController#list as HTML
|
|
1757
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1758
|
-
Rendered text template (0.1ms)
|
|
1759
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1760
|
-
Completed 403 Forbidden in 7ms (Views: 5.7ms)
|
|
1761
|
-
Processing by AnonymousController#list as HTML
|
|
1762
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1763
|
-
Processing by AnonymousController#foobar as HTML
|
|
1764
|
-
Parameters: {"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}, "anonymou"=>{"method"=>"foobar", "room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
1765
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1766
|
-
Processing by AnonymousController#list as HTML
|
|
1767
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
1768
|
-
Processing by AnonymousController#list as HTML
|
|
1769
|
-
Completed 500 Internal Server Error in 0ms
|
|
1770
|
-
Processing by AnonymousController#list as HTML
|
|
1771
|
-
Completed 500 Internal Server Error in 0ms
|
|
1772
|
-
Processing by AnonymousController#list as HTML
|
|
1773
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1774
|
-
Rendered text template (0.0ms)
|
|
1775
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1776
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1777
|
-
Processing by AnonymousController#list as HTML
|
|
1778
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1779
|
-
Rendered text template (0.0ms)
|
|
1780
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1781
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1782
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1783
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1784
|
-
Rendered text template (0.0ms)
|
|
1785
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1786
|
-
Processing by AnonymousController#list as HTML
|
|
1787
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1788
|
-
Processing by AnonymousController#foobar as HTML
|
|
1789
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
1790
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
1791
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
1792
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
1793
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
1794
|
-
Processing by AnonymousController#foobar as HTML
|
|
1795
|
-
Parameters: {"user"=>"foo"}
|
|
1796
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1797
|
-
Processing by AnonymousController#wcid as HTML
|
|
1798
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}}
|
|
1799
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1800
|
-
Processing by AnonymousController#wcid as HTML
|
|
1801
|
-
Parameters: {"user"=>"foo", "params"=>{}}
|
|
1802
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
1803
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
1804
|
-
Processing by AnonymousController#wcid as HTML
|
|
1805
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}}
|
|
1806
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
1807
|
-
Processing by AnonymousController#wcid as HTML
|
|
1808
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"foo"}}}
|
|
1809
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1810
|
-
Processing by AnonymousController#wcid as HTML
|
|
1811
|
-
Parameters: {"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}, "anonymou"=>{"method"=>"wcid", "room_id"=>nil, "user"=>"foo", "params"=>{"app"=>"nope"}}}
|
|
1812
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
1813
|
-
Processing by AnonymousController#list as HTML
|
|
1814
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1815
|
-
Processing by AnonymousController#wcid as HTML
|
|
1816
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"app"=>"foobar"}}}
|
|
1817
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1818
|
-
Processing by AnonymousController#list as HTML
|
|
1819
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1820
|
-
Processing by AnonymousController#wcid as HTML
|
|
1821
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}}}
|
|
1822
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1823
|
-
Processing by AnonymousController#list as HTML
|
|
1824
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1825
|
-
Processing by AnonymousController#wcid as HTML
|
|
1826
|
-
Parameters: {"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "anonymou"=>{"method"=>"wcid", "room_id"=>"123", "user"=>"bhuga", "params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}}}
|
|
1827
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1828
|
-
Processing by AnonymousController#list as HTML
|
|
1829
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1830
|
-
Processing by AnonymousController#list as HTML
|
|
1831
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1832
|
-
Rendered text template (0.4ms)
|
|
1833
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1834
|
-
Completed 403 Forbidden in 12ms (Views: 10.1ms)
|
|
1835
|
-
Processing by AnonymousController#list as HTML
|
|
1836
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1837
|
-
Processing by AnonymousController#list as HTML
|
|
1838
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1839
|
-
Processing by AnonymousController#list as HTML
|
|
1840
|
-
Completed 500 Internal Server Error in 0ms
|
|
1841
|
-
Processing by AnonymousController#list as HTML
|
|
1842
|
-
Completed 500 Internal Server Error in 0ms
|
|
1843
|
-
Processing by AnonymousController#list as HTML
|
|
1844
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1845
|
-
Rendered text template (0.0ms)
|
|
1846
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1847
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1848
|
-
Processing by AnonymousController#list as HTML
|
|
1849
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1850
|
-
Rendered text template (0.0ms)
|
|
1851
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1852
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
1853
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1854
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1855
|
-
Rendered text template (0.0ms)
|
|
1856
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
1857
|
-
Processing by AnonymousController#list as HTML
|
|
1858
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1859
|
-
Processing by AnonymousController#foobar as HTML
|
|
1860
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
1861
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
1862
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
1863
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
1864
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
1865
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
1866
|
-
Processing by AnonymousController#foobar as HTML
|
|
1867
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
1868
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1869
|
-
Processing by AnonymousController#wcid as HTML
|
|
1870
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
1871
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1872
|
-
Processing by AnonymousController#wcid as HTML
|
|
1873
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
1874
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
1875
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
1876
|
-
Processing by AnonymousController#wcid as HTML
|
|
1877
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
1878
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
1879
|
-
Processing by AnonymousController#wcid as HTML
|
|
1880
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
1881
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1882
|
-
Processing by AnonymousController#wcid as HTML
|
|
1883
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
1884
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
1885
|
-
Processing by AnonymousController#list as HTML
|
|
1886
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
1887
|
-
Processing by AnonymousController#wcid as HTML
|
|
1888
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
1889
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1890
|
-
Processing by AnonymousController#list as HTML
|
|
1891
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1892
|
-
Processing by AnonymousController#wcid as HTML
|
|
1893
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
1894
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1895
|
-
Processing by AnonymousController#list as HTML
|
|
1896
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
1897
|
-
Processing by AnonymousController#wcid as HTML
|
|
1898
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
1899
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1900
|
-
Processing by AnonymousController#list as HTML
|
|
1901
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1902
|
-
Processing by AnonymousController#list as HTML
|
|
1903
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1904
|
-
Rendered text template (0.1ms)
|
|
1905
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1906
|
-
Completed 403 Forbidden in 7ms (Views: 4.8ms)
|
|
1907
|
-
Processing by AnonymousController#list as HTML
|
|
1908
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
1909
|
-
Processing by AnonymousController#list as HTML
|
|
1910
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
1911
|
-
Processing by AnonymousController#list as HTML
|
|
1912
|
-
Completed 500 Internal Server Error in 0ms
|
|
1913
|
-
Processing by AnonymousController#list as HTML
|
|
1914
|
-
Completed 500 Internal Server Error in 0ms
|
|
1915
|
-
Processing by AnonymousController#list as HTML
|
|
1916
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1917
|
-
Rendered text template (0.1ms)
|
|
1918
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1919
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1920
|
-
Processing by AnonymousController#list as HTML
|
|
1921
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1922
|
-
Rendered text template (0.1ms)
|
|
1923
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1924
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1925
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1926
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1927
|
-
Rendered text template (0.1ms)
|
|
1928
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1929
|
-
Processing by AnonymousController#list as HTML
|
|
1930
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1931
|
-
Processing by AnonymousController#foobar as HTML
|
|
1932
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
1933
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
1934
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
1935
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
1936
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
1937
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
1938
|
-
Processing by AnonymousController#foobar as HTML
|
|
1939
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
1940
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1941
|
-
Processing by AnonymousController#wcid as HTML
|
|
1942
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
1943
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1944
|
-
Processing by AnonymousController#wcid as HTML
|
|
1945
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
1946
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
1947
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
1948
|
-
Processing by AnonymousController#wcid as HTML
|
|
1949
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
1950
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
|
1951
|
-
Processing by AnonymousController#wcid as HTML
|
|
1952
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
1953
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1954
|
-
Processing by AnonymousController#wcid as HTML
|
|
1955
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
1956
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
1957
|
-
Processing by AnonymousController#list as HTML
|
|
1958
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
1959
|
-
Processing by AnonymousController#wcid as HTML
|
|
1960
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
1961
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1962
|
-
Processing by AnonymousController#list as HTML
|
|
1963
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1964
|
-
Processing by AnonymousController#wcid as HTML
|
|
1965
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
1966
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1967
|
-
Processing by AnonymousController#list as HTML
|
|
1968
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1969
|
-
Processing by AnonymousController#wcid as HTML
|
|
1970
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
1971
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
1972
|
-
Processing by AnonymousController#list as HTML
|
|
1973
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
1974
|
-
Processing by AnonymousController#list as HTML
|
|
1975
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1976
|
-
Rendered text template (0.1ms)
|
|
1977
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1978
|
-
Completed 403 Forbidden in 6ms (Views: 4.5ms)
|
|
1979
|
-
Processing by AnonymousController#list as HTML
|
|
1980
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1981
|
-
Processing by AnonymousController#list as HTML
|
|
1982
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
1983
|
-
Processing by AnonymousController#list as HTML
|
|
1984
|
-
Completed 500 Internal Server Error in 0ms
|
|
1985
|
-
Processing by AnonymousController#list as HTML
|
|
1986
|
-
Completed 500 Internal Server Error in 0ms
|
|
1987
|
-
Processing by AnonymousController#list as HTML
|
|
1988
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1989
|
-
Rendered text template (0.0ms)
|
|
1990
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1991
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
1992
|
-
Processing by AnonymousController#list as HTML
|
|
1993
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1994
|
-
Rendered text template (0.1ms)
|
|
1995
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
1996
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
1997
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
1998
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
1999
|
-
Rendered text template (0.1ms)
|
|
2000
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2001
|
-
Processing by AnonymousController#list as HTML
|
|
2002
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2003
|
-
Processing by AnonymousController#foobar as HTML
|
|
2004
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2005
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2006
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2007
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2008
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2009
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
2010
|
-
Processing by AnonymousController#foobar as HTML
|
|
2011
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2012
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2013
|
-
Processing by AnonymousController#wcid as HTML
|
|
2014
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2015
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2016
|
-
Processing by AnonymousController#wcid as HTML
|
|
2017
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2018
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2019
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2020
|
-
Processing by AnonymousController#wcid as HTML
|
|
2021
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2022
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2023
|
-
Processing by AnonymousController#wcid as HTML
|
|
2024
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2025
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2026
|
-
Processing by AnonymousController#wcid as HTML
|
|
2027
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2028
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2029
|
-
Processing by AnonymousController#list as HTML
|
|
2030
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2031
|
-
Processing by AnonymousController#wcid as HTML
|
|
2032
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2033
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2034
|
-
Processing by AnonymousController#list as HTML
|
|
2035
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2036
|
-
Processing by AnonymousController#wcid as HTML
|
|
2037
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2038
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2039
|
-
Processing by AnonymousController#list as HTML
|
|
2040
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2041
|
-
Processing by AnonymousController#wcid as HTML
|
|
2042
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2043
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2044
|
-
Processing by AnonymousController#list as HTML
|
|
2045
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2046
|
-
Processing by AnonymousController#foobar as HTML
|
|
2047
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2048
|
-
Completed 200 OK in 2ms (Views: 0.1ms)
|
|
2049
|
-
Processing by AnonymousController#list as HTML
|
|
2050
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2051
|
-
Rendered text template (0.9ms)
|
|
2052
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2053
|
-
Completed 403 Forbidden in 12ms (Views: 9.4ms)
|
|
2054
|
-
Processing by AnonymousController#list as HTML
|
|
2055
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2056
|
-
Rendered text template (0.0ms)
|
|
2057
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2058
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2059
|
-
Processing by AnonymousController#foobar as HTML
|
|
2060
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2061
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2062
|
-
Rendered text template (0.0ms)
|
|
2063
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2064
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2065
|
-
Processing by AnonymousController#list as HTML
|
|
2066
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2067
|
-
Rendered text template (0.0ms)
|
|
2068
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2069
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2070
|
-
Processing by AnonymousController#list as HTML
|
|
2071
|
-
Completed 500 Internal Server Error in 0ms
|
|
2072
|
-
Processing by AnonymousController#list as HTML
|
|
2073
|
-
Completed 500 Internal Server Error in 0ms
|
|
2074
|
-
Processing by AnonymousController#list as HTML
|
|
2075
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2076
|
-
Rendered text template (0.1ms)
|
|
2077
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2078
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
2079
|
-
Processing by AnonymousController#list as HTML
|
|
2080
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2081
|
-
Rendered text template (0.0ms)
|
|
2082
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2083
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2084
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2085
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2086
|
-
Rendered text template (0.0ms)
|
|
2087
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2088
|
-
Processing by AnonymousController#list as HTML
|
|
2089
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2090
|
-
Processing by AnonymousController#foobar as HTML
|
|
2091
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2092
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2093
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2094
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2095
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2096
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
2097
|
-
Processing by AnonymousController#foobar as HTML
|
|
2098
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2099
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2100
|
-
Processing by AnonymousController#wcid as HTML
|
|
2101
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2102
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2103
|
-
Processing by AnonymousController#wcid as HTML
|
|
2104
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2105
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2106
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2107
|
-
Processing by AnonymousController#wcid as HTML
|
|
2108
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2109
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2110
|
-
Processing by AnonymousController#wcid as HTML
|
|
2111
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2112
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2113
|
-
Processing by AnonymousController#wcid as HTML
|
|
2114
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2115
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2116
|
-
Processing by AnonymousController#list as HTML
|
|
2117
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2118
|
-
Processing by AnonymousController#wcid as HTML
|
|
2119
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2120
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2121
|
-
Processing by AnonymousController#list as HTML
|
|
2122
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2123
|
-
Processing by AnonymousController#wcid as HTML
|
|
2124
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2125
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2126
|
-
Processing by AnonymousController#list as HTML
|
|
2127
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2128
|
-
Processing by AnonymousController#wcid as HTML
|
|
2129
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2130
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2131
|
-
Processing by AnonymousController#list as HTML
|
|
2132
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2133
|
-
Processing by AnonymousController#list as HTML
|
|
2134
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2135
|
-
Rendered text template (0.1ms)
|
|
2136
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2137
|
-
Completed 403 Forbidden in 6ms (Views: 4.6ms)
|
|
2138
|
-
Processing by AnonymousController#list as HTML
|
|
2139
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2140
|
-
Processing by AnonymousController#foobar as HTML
|
|
2141
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2142
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2143
|
-
Processing by AnonymousController#list as HTML
|
|
2144
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2145
|
-
Processing by AnonymousController#list as HTML
|
|
2146
|
-
Completed 500 Internal Server Error in 0ms
|
|
2147
|
-
Processing by AnonymousController#list as HTML
|
|
2148
|
-
Completed 500 Internal Server Error in 0ms
|
|
2149
|
-
Processing by AnonymousController#list as HTML
|
|
2150
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2151
|
-
Rendered text template (0.0ms)
|
|
2152
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2153
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2154
|
-
Processing by AnonymousController#list as HTML
|
|
2155
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2156
|
-
Rendered text template (0.1ms)
|
|
2157
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2158
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2159
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2160
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2161
|
-
Rendered text template (0.0ms)
|
|
2162
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2163
|
-
Processing by AnonymousController#list as HTML
|
|
2164
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2165
|
-
Processing by AnonymousController#foobar as HTML
|
|
2166
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2167
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2168
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2169
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2170
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2171
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
2172
|
-
Processing by AnonymousController#foobar as HTML
|
|
2173
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2174
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2175
|
-
Processing by AnonymousController#wcid as HTML
|
|
2176
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2177
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2178
|
-
Processing by AnonymousController#wcid as HTML
|
|
2179
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2180
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2181
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2182
|
-
Processing by AnonymousController#wcid as HTML
|
|
2183
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2184
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2185
|
-
Processing by AnonymousController#wcid as HTML
|
|
2186
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2187
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2188
|
-
Processing by AnonymousController#wcid as HTML
|
|
2189
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2190
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2191
|
-
Processing by AnonymousController#list as HTML
|
|
2192
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2193
|
-
Processing by AnonymousController#wcid as HTML
|
|
2194
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2195
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2196
|
-
Processing by AnonymousController#list as HTML
|
|
2197
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2198
|
-
Processing by AnonymousController#wcid as HTML
|
|
2199
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2200
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2201
|
-
Processing by AnonymousController#list as HTML
|
|
2202
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2203
|
-
Processing by AnonymousController#wcid as HTML
|
|
2204
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2205
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2206
|
-
Processing by AnonymousController#list as HTML
|
|
2207
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2208
|
-
Processing by AnonymousController#list as HTML
|
|
2209
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2210
|
-
Rendered text template (0.1ms)
|
|
2211
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2212
|
-
Completed 403 Forbidden in 10ms (Views: 6.9ms)
|
|
2213
|
-
Processing by AnonymousController#list as HTML
|
|
2214
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2215
|
-
Rendered text template (0.1ms)
|
|
2216
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2217
|
-
Completed 403 Forbidden in 3ms (Views: 0.6ms)
|
|
2218
|
-
Processing by AnonymousController#foobar as HTML
|
|
2219
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2220
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2221
|
-
Processing by AnonymousController#list as HTML
|
|
2222
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
2223
|
-
Processing by AnonymousController#list as HTML
|
|
2224
|
-
Completed 500 Internal Server Error in 0ms
|
|
2225
|
-
Processing by AnonymousController#list as HTML
|
|
2226
|
-
Completed 500 Internal Server Error in 0ms
|
|
2227
|
-
Processing by AnonymousController#list as HTML
|
|
2228
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2229
|
-
Rendered text template (0.0ms)
|
|
2230
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2231
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2232
|
-
Processing by AnonymousController#list as HTML
|
|
2233
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2234
|
-
Rendered text template (0.0ms)
|
|
2235
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2236
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2237
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2238
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2239
|
-
Rendered text template (0.0ms)
|
|
2240
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2241
|
-
Processing by AnonymousController#list as HTML
|
|
2242
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2243
|
-
Processing by AnonymousController#foobar as HTML
|
|
2244
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2245
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2246
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2247
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2248
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2249
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
2250
|
-
Processing by AnonymousController#foobar as HTML
|
|
2251
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2252
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2253
|
-
Processing by AnonymousController#wcid as HTML
|
|
2254
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2255
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2256
|
-
Processing by AnonymousController#wcid as HTML
|
|
2257
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2258
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2259
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2260
|
-
Processing by AnonymousController#wcid as HTML
|
|
2261
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2262
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
|
2263
|
-
Processing by AnonymousController#wcid as HTML
|
|
2264
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2265
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2266
|
-
Processing by AnonymousController#wcid as HTML
|
|
2267
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2268
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2269
|
-
Processing by AnonymousController#list as HTML
|
|
2270
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2271
|
-
Processing by AnonymousController#wcid as HTML
|
|
2272
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2273
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2274
|
-
Processing by AnonymousController#list as HTML
|
|
2275
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2276
|
-
Processing by AnonymousController#wcid as HTML
|
|
2277
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2278
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2279
|
-
Processing by AnonymousController#list as HTML
|
|
2280
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2281
|
-
Processing by AnonymousController#wcid as HTML
|
|
2282
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2283
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2284
|
-
Processing by AnonymousController#list as HTML
|
|
2285
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2286
|
-
Processing by AnonymousController#list as HTML
|
|
2287
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2288
|
-
Rendered text template (0.1ms)
|
|
2289
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2290
|
-
Completed 403 Forbidden in 6ms (Views: 4.8ms)
|
|
2291
|
-
Processing by AnonymousController#list as HTML
|
|
2292
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
2293
|
-
Processing by AnonymousController#foobar as HTML
|
|
2294
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2295
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2296
|
-
Processing by AnonymousController#list as HTML
|
|
2297
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2298
|
-
Processing by AnonymousController#list as HTML
|
|
2299
|
-
Completed 500 Internal Server Error in 0ms
|
|
2300
|
-
Processing by AnonymousController#list as HTML
|
|
2301
|
-
Completed 500 Internal Server Error in 0ms
|
|
2302
|
-
Processing by AnonymousController#list as HTML
|
|
2303
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2304
|
-
Rendered text template (0.0ms)
|
|
2305
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2306
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2307
|
-
Processing by AnonymousController#list as HTML
|
|
2308
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2309
|
-
Rendered text template (0.0ms)
|
|
2310
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2311
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2312
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2313
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2314
|
-
Rendered text template (0.0ms)
|
|
2315
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2316
|
-
Processing by AnonymousController#list as HTML
|
|
2317
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2318
|
-
Processing by AnonymousController#foobar as HTML
|
|
2319
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2320
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2321
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2322
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2323
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2324
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
2325
|
-
Processing by AnonymousController#foobar as HTML
|
|
2326
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2327
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2328
|
-
Processing by AnonymousController#wcid as HTML
|
|
2329
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2330
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2331
|
-
Processing by AnonymousController#wcid as HTML
|
|
2332
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2333
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2334
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2335
|
-
Processing by AnonymousController#wcid as HTML
|
|
2336
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2337
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2338
|
-
Processing by AnonymousController#wcid as HTML
|
|
2339
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2340
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2341
|
-
Processing by AnonymousController#wcid as HTML
|
|
2342
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2343
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2344
|
-
Processing by AnonymousController#list as HTML
|
|
2345
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2346
|
-
Processing by AnonymousController#wcid as HTML
|
|
2347
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2348
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2349
|
-
Processing by AnonymousController#list as HTML
|
|
2350
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2351
|
-
Processing by AnonymousController#wcid as HTML
|
|
2352
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2353
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2354
|
-
Processing by AnonymousController#list as HTML
|
|
2355
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2356
|
-
Processing by AnonymousController#wcid as HTML
|
|
2357
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2358
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2359
|
-
Processing by AnonymousController#list as HTML
|
|
2360
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2361
|
-
Processing by AnonymousController#list as HTML
|
|
2362
|
-
Completed 500 Internal Server Error in 3ms
|
|
2363
|
-
Processing by AnonymousController#list as HTML
|
|
2364
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2365
|
-
Rendered text template (0.1ms)
|
|
2366
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2367
|
-
Completed 403 Forbidden in 8ms (Views: 7.9ms)
|
|
2368
|
-
Processing by AnonymousController#foobar as HTML
|
|
2369
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2370
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2371
|
-
Rendered text template (0.0ms)
|
|
2372
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2373
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2374
|
-
Processing by AnonymousController#list as HTML
|
|
2375
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2376
|
-
Rendered text template (0.0ms)
|
|
2377
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2378
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2379
|
-
Processing by AnonymousController#list as HTML
|
|
2380
|
-
Completed 500 Internal Server Error in 0ms
|
|
2381
|
-
Processing by AnonymousController#list as HTML
|
|
2382
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2383
|
-
Rendered text template (0.1ms)
|
|
2384
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2385
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2386
|
-
Processing by AnonymousController#list as HTML
|
|
2387
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2388
|
-
Rendered text template (0.0ms)
|
|
2389
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2390
|
-
Completed 403 Forbidden in 1ms (Views: 0.2ms)
|
|
2391
|
-
Processing by AnonymousController#list as HTML
|
|
2392
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2393
|
-
Rendered text template (0.1ms)
|
|
2394
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2395
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2396
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2397
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2398
|
-
Rendered text template (0.0ms)
|
|
2399
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2400
|
-
Processing by AnonymousController#list as HTML
|
|
2401
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2402
|
-
Processing by AnonymousController#foobar as HTML
|
|
2403
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2404
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2405
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2406
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2407
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2408
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
2409
|
-
Processing by AnonymousController#foobar as HTML
|
|
2410
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2411
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2412
|
-
Processing by AnonymousController#wcid as HTML
|
|
2413
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2414
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2415
|
-
Processing by AnonymousController#wcid as HTML
|
|
2416
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2417
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2418
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2419
|
-
Processing by AnonymousController#wcid as HTML
|
|
2420
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2421
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2422
|
-
Processing by AnonymousController#wcid as HTML
|
|
2423
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2424
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2425
|
-
Processing by AnonymousController#wcid as HTML
|
|
2426
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2427
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2428
|
-
Processing by AnonymousController#list as HTML
|
|
2429
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2430
|
-
Processing by AnonymousController#wcid as HTML
|
|
2431
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2432
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2433
|
-
Processing by AnonymousController#list as HTML
|
|
2434
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2435
|
-
Processing by AnonymousController#wcid as HTML
|
|
2436
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2437
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2438
|
-
Processing by AnonymousController#list as HTML
|
|
2439
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2440
|
-
Processing by AnonymousController#wcid as HTML
|
|
2441
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2442
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2443
|
-
Processing by AnonymousController#list as HTML
|
|
2444
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2445
|
-
Processing by AnonymousController#list as HTML
|
|
2446
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2447
|
-
Rendered text template (0.1ms)
|
|
2448
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2449
|
-
Completed 403 Forbidden in 8ms (Views: 6.2ms)
|
|
2450
|
-
Processing by AnonymousController#list as HTML
|
|
2451
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2452
|
-
Processing by AnonymousController#foobar as HTML
|
|
2453
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2454
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2455
|
-
Processing by AnonymousController#list as HTML
|
|
2456
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2457
|
-
Processing by AnonymousController#list as HTML
|
|
2458
|
-
Completed 500 Internal Server Error in 0ms
|
|
2459
|
-
Processing by AnonymousController#list as HTML
|
|
2460
|
-
Completed 500 Internal Server Error in 0ms
|
|
2461
|
-
Processing by AnonymousController#list as HTML
|
|
2462
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2463
|
-
Rendered text template (0.1ms)
|
|
2464
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2465
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
2466
|
-
Processing by AnonymousController#list as HTML
|
|
2467
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2468
|
-
Rendered text template (0.0ms)
|
|
2469
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2470
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2471
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2472
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2473
|
-
Rendered text template (0.0ms)
|
|
2474
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2475
|
-
Processing by AnonymousController#list as HTML
|
|
2476
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2477
|
-
Processing by AnonymousController#foobar as HTML
|
|
2478
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2479
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2480
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2481
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2482
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2483
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
2484
|
-
Processing by AnonymousController#foobar as HTML
|
|
2485
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2486
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2487
|
-
Processing by AnonymousController#wcid as HTML
|
|
2488
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2489
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2490
|
-
Processing by AnonymousController#wcid as HTML
|
|
2491
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2492
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2493
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2494
|
-
Processing by AnonymousController#wcid as HTML
|
|
2495
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2496
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2497
|
-
Processing by AnonymousController#wcid as HTML
|
|
2498
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2499
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2500
|
-
Processing by AnonymousController#wcid as HTML
|
|
2501
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2502
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2503
|
-
Processing by AnonymousController#list as HTML
|
|
2504
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
2505
|
-
Processing by AnonymousController#wcid as HTML
|
|
2506
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2507
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
|
2508
|
-
Processing by AnonymousController#list as HTML
|
|
2509
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2510
|
-
Processing by AnonymousController#wcid as HTML
|
|
2511
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2512
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2513
|
-
Processing by AnonymousController#list as HTML
|
|
2514
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2515
|
-
Processing by AnonymousController#wcid as HTML
|
|
2516
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2517
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2518
|
-
Processing by AnonymousController#list as HTML
|
|
2519
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2520
|
-
Processing by AnonymousController#list as HTML
|
|
2521
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2522
|
-
Rendered text template (0.1ms)
|
|
2523
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2524
|
-
Completed 403 Forbidden in 8ms (Views: 5.1ms)
|
|
2525
|
-
Processing by AnonymousController#list as HTML
|
|
2526
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2527
|
-
Processing by AnonymousController#foobar as HTML
|
|
2528
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2529
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2530
|
-
Processing by AnonymousController#list as HTML
|
|
2531
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2532
|
-
Processing by AnonymousController#list as HTML
|
|
2533
|
-
Completed 500 Internal Server Error in 0ms
|
|
2534
|
-
Processing by AnonymousController#list as HTML
|
|
2535
|
-
Completed 500 Internal Server Error in 0ms
|
|
2536
|
-
Processing by AnonymousController#list as HTML
|
|
2537
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2538
|
-
Rendered text template (0.0ms)
|
|
2539
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2540
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2541
|
-
Processing by AnonymousController#list as HTML
|
|
2542
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2543
|
-
Rendered text template (0.1ms)
|
|
2544
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2545
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2546
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2547
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2548
|
-
Rendered text template (0.0ms)
|
|
2549
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2550
|
-
Processing by AnonymousController#list as HTML
|
|
2551
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2552
|
-
Processing by AnonymousController#foobar as HTML
|
|
2553
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2554
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2555
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2556
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2557
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2558
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
2559
|
-
Processing by AnonymousController#foobar as HTML
|
|
2560
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2561
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2562
|
-
Processing by AnonymousController#wcid as HTML
|
|
2563
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2564
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2565
|
-
Processing by AnonymousController#wcid as HTML
|
|
2566
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2567
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2568
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2569
|
-
Processing by AnonymousController#wcid as HTML
|
|
2570
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2571
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2572
|
-
Processing by AnonymousController#wcid as HTML
|
|
2573
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2574
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2575
|
-
Processing by AnonymousController#wcid as HTML
|
|
2576
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2577
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2578
|
-
Processing by AnonymousController#list as HTML
|
|
2579
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2580
|
-
Processing by AnonymousController#wcid as HTML
|
|
2581
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2582
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2583
|
-
Processing by AnonymousController#list as HTML
|
|
2584
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2585
|
-
Processing by AnonymousController#wcid as HTML
|
|
2586
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2587
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2588
|
-
Processing by AnonymousController#list as HTML
|
|
2589
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2590
|
-
Processing by AnonymousController#wcid as HTML
|
|
2591
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2592
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2593
|
-
Processing by AnonymousController#list as HTML
|
|
2594
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2595
|
-
Processing by AnonymousController#list as HTML
|
|
2596
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2597
|
-
Rendered text template (0.4ms)
|
|
2598
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2599
|
-
Completed 403 Forbidden in 11ms (Views: 9.3ms)
|
|
2600
|
-
Processing by AnonymousController#list as HTML
|
|
2601
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2602
|
-
Processing by AnonymousController#foobar as HTML
|
|
2603
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2604
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2605
|
-
Processing by AnonymousController#list as HTML
|
|
2606
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
2607
|
-
Processing by AnonymousController#list as HTML
|
|
2608
|
-
Completed 500 Internal Server Error in 0ms
|
|
2609
|
-
Processing by AnonymousController#list as HTML
|
|
2610
|
-
Completed 500 Internal Server Error in 1ms
|
|
2611
|
-
Processing by AnonymousController#list as HTML
|
|
2612
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2613
|
-
Rendered text template (0.0ms)
|
|
2614
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2615
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2616
|
-
Processing by AnonymousController#list as HTML
|
|
2617
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2618
|
-
Rendered text template (0.0ms)
|
|
2619
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2620
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2621
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2622
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2623
|
-
Rendered text template (0.1ms)
|
|
2624
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
|
2625
|
-
Processing by AnonymousController#list as HTML
|
|
2626
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2627
|
-
Processing by AnonymousController#foobar as HTML
|
|
2628
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2629
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2630
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2631
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2632
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2633
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
2634
|
-
Processing by AnonymousController#foobar as HTML
|
|
2635
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2636
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2637
|
-
Processing by AnonymousController#wcid as HTML
|
|
2638
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2639
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2640
|
-
Processing by AnonymousController#wcid as HTML
|
|
2641
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2642
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2643
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2644
|
-
Processing by AnonymousController#wcid as HTML
|
|
2645
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2646
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2647
|
-
Processing by AnonymousController#wcid as HTML
|
|
2648
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2649
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2650
|
-
Processing by AnonymousController#wcid as HTML
|
|
2651
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2652
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2653
|
-
Processing by AnonymousController#list as HTML
|
|
2654
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2655
|
-
Processing by AnonymousController#wcid as HTML
|
|
2656
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2657
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2658
|
-
Processing by AnonymousController#list as HTML
|
|
2659
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2660
|
-
Processing by AnonymousController#wcid as HTML
|
|
2661
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2662
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2663
|
-
Processing by AnonymousController#list as HTML
|
|
2664
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2665
|
-
Processing by AnonymousController#wcid as HTML
|
|
2666
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2667
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2668
|
-
Processing by AnonymousController#list as HTML
|
|
2669
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2670
|
-
Processing by AnonymousController#list as HTML
|
|
2671
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2672
|
-
Rendered text template (0.4ms)
|
|
2673
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
2674
|
-
Completed 403 Forbidden in 9ms (Views: 7.4ms)
|
|
2675
|
-
Processing by AnonymousController#list as HTML
|
|
2676
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
2677
|
-
Processing by AnonymousController#foobar as HTML
|
|
2678
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2679
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2680
|
-
Processing by AnonymousController#list as HTML
|
|
2681
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
2682
|
-
Processing by AnonymousController#list as HTML
|
|
2683
|
-
Completed 500 Internal Server Error in 0ms
|
|
2684
|
-
Processing by AnonymousController#list as HTML
|
|
2685
|
-
Completed 500 Internal Server Error in 0ms
|
|
2686
|
-
Processing by AnonymousController#list as HTML
|
|
2687
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2688
|
-
Rendered text template (0.0ms)
|
|
2689
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2690
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2691
|
-
Processing by AnonymousController#list as HTML
|
|
2692
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2693
|
-
Rendered text template (0.1ms)
|
|
2694
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2695
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
2696
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2697
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2698
|
-
Rendered text template (0.0ms)
|
|
2699
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2700
|
-
Processing by AnonymousController#list as HTML
|
|
2701
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2702
|
-
Rendered text template (0.0ms)
|
|
2703
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2704
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2705
|
-
Processing by AnonymousController#foobar as HTML
|
|
2706
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2707
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2708
|
-
Rendered text template (0.0ms)
|
|
2709
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2710
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2711
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2712
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2713
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
2714
|
-
Processing by AnonymousController#foobar as HTML
|
|
2715
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2716
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2717
|
-
Rendered text template (0.0ms)
|
|
2718
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2719
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2720
|
-
Processing by AnonymousController#wcid as HTML
|
|
2721
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2722
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2723
|
-
Rendered text template (0.0ms)
|
|
2724
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2725
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2726
|
-
Processing by AnonymousController#wcid as HTML
|
|
2727
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2728
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2729
|
-
Rendered text template (0.0ms)
|
|
2730
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2731
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2732
|
-
Processing by AnonymousController#wcid as HTML
|
|
2733
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2734
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2735
|
-
Rendered text template (0.0ms)
|
|
2736
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2737
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2738
|
-
Processing by AnonymousController#wcid as HTML
|
|
2739
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2740
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2741
|
-
Rendered text template (0.0ms)
|
|
2742
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2743
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2744
|
-
Processing by AnonymousController#wcid as HTML
|
|
2745
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2746
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2747
|
-
Rendered text template (0.0ms)
|
|
2748
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2749
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2750
|
-
Processing by AnonymousController#list as HTML
|
|
2751
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2752
|
-
Rendered text template (0.0ms)
|
|
2753
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2754
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2755
|
-
Processing by AnonymousController#list as HTML
|
|
2756
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2757
|
-
Rendered text template (0.0ms)
|
|
2758
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2759
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2760
|
-
Processing by AnonymousController#list as HTML
|
|
2761
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2762
|
-
Rendered text template (0.0ms)
|
|
2763
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2764
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2765
|
-
Processing by AnonymousController#list as HTML
|
|
2766
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2767
|
-
Rendered text template (0.2ms)
|
|
2768
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2769
|
-
Completed 403 Forbidden in 1ms (Views: 0.7ms)
|
|
2770
|
-
Processing by AnonymousController#list as HTML
|
|
2771
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2772
|
-
Rendered text template (0.1ms)
|
|
2773
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
2774
|
-
Completed 403 Forbidden in 5ms (Views: 4.6ms)
|
|
2775
|
-
Processing by AnonymousController#list as HTML
|
|
2776
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2777
|
-
Processing by AnonymousController#foobar as HTML
|
|
2778
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2779
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
2780
|
-
Processing by AnonymousController#list as HTML
|
|
2781
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2782
|
-
Processing by AnonymousController#list as HTML
|
|
2783
|
-
Completed 500 Internal Server Error in 0ms
|
|
2784
|
-
Processing by AnonymousController#list as HTML
|
|
2785
|
-
Completed 500 Internal Server Error in 0ms
|
|
2786
|
-
Processing by AnonymousController#list as HTML
|
|
2787
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2788
|
-
Rendered text template (0.0ms)
|
|
2789
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2790
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2791
|
-
Processing by AnonymousController#list as HTML
|
|
2792
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2793
|
-
Rendered text template (0.0ms)
|
|
2794
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2795
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2796
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2797
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2798
|
-
Rendered text template (0.1ms)
|
|
2799
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
2800
|
-
Processing by AnonymousController#list as HTML
|
|
2801
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2802
|
-
Rendered text template (0.0ms)
|
|
2803
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2804
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2805
|
-
Processing by AnonymousController#foobar as HTML
|
|
2806
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2807
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2808
|
-
Rendered text template (0.1ms)
|
|
2809
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2810
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2811
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2812
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2813
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
2814
|
-
Processing by AnonymousController#foobar as HTML
|
|
2815
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2816
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2817
|
-
Rendered text template (0.0ms)
|
|
2818
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2819
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2820
|
-
Processing by AnonymousController#wcid as HTML
|
|
2821
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2822
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2823
|
-
Rendered text template (0.0ms)
|
|
2824
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2825
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2826
|
-
Processing by AnonymousController#wcid as HTML
|
|
2827
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2828
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2829
|
-
Rendered text template (0.0ms)
|
|
2830
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2831
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2832
|
-
Processing by AnonymousController#wcid as HTML
|
|
2833
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2834
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2835
|
-
Rendered text template (0.0ms)
|
|
2836
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2837
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2838
|
-
Processing by AnonymousController#wcid as HTML
|
|
2839
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2840
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2841
|
-
Rendered text template (0.0ms)
|
|
2842
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2843
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2844
|
-
Processing by AnonymousController#wcid as HTML
|
|
2845
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2846
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2847
|
-
Rendered text template (0.1ms)
|
|
2848
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2849
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2850
|
-
Processing by AnonymousController#list as HTML
|
|
2851
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2852
|
-
Rendered text template (0.0ms)
|
|
2853
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2854
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2855
|
-
Processing by AnonymousController#list as HTML
|
|
2856
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2857
|
-
Rendered text template (0.0ms)
|
|
2858
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2859
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
2860
|
-
Processing by AnonymousController#list as HTML
|
|
2861
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2862
|
-
Rendered text template (0.1ms)
|
|
2863
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2864
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
2865
|
-
Processing by AnonymousController#list as HTML
|
|
2866
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2867
|
-
Rendered text template (0.1ms)
|
|
2868
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2869
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
2870
|
-
Processing by AnonymousController#wcid as HTML
|
|
2871
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2872
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2873
|
-
Rendered text template (0.1ms)
|
|
2874
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2875
|
-
Completed 403 Forbidden in 7ms (Views: 6.4ms)
|
|
2876
|
-
Processing by AnonymousController#list as HTML
|
|
2877
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2878
|
-
Rendered text template (0.1ms)
|
|
2879
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
2880
|
-
Completed 403 Forbidden in 6ms (Views: 4.8ms)
|
|
2881
|
-
Processing by AnonymousController#list as HTML
|
|
2882
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
2883
|
-
Processing by AnonymousController#foobar as HTML
|
|
2884
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2885
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2886
|
-
Processing by AnonymousController#list as HTML
|
|
2887
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2888
|
-
Processing by AnonymousController#list as HTML
|
|
2889
|
-
Completed 500 Internal Server Error in 0ms
|
|
2890
|
-
Processing by AnonymousController#list as HTML
|
|
2891
|
-
Completed 500 Internal Server Error in 0ms
|
|
2892
|
-
Processing by AnonymousController#list as HTML
|
|
2893
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2894
|
-
Rendered text template (0.1ms)
|
|
2895
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2896
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2897
|
-
Processing by AnonymousController#list as HTML
|
|
2898
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2899
|
-
Rendered text template (0.0ms)
|
|
2900
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2901
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
2902
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2903
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2904
|
-
Rendered text template (0.0ms)
|
|
2905
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2906
|
-
Processing by AnonymousController#list as HTML
|
|
2907
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2908
|
-
Processing by AnonymousController#foobar as HTML
|
|
2909
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2910
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2911
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
2912
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2913
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2914
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
2915
|
-
Processing by AnonymousController#foobar as HTML
|
|
2916
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2917
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2918
|
-
Processing by AnonymousController#wcid as HTML
|
|
2919
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
2920
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2921
|
-
Processing by AnonymousController#wcid as HTML
|
|
2922
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
2923
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
2924
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2925
|
-
Processing by AnonymousController#wcid as HTML
|
|
2926
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
2927
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2928
|
-
Processing by AnonymousController#wcid as HTML
|
|
2929
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2930
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2931
|
-
Processing by AnonymousController#wcid as HTML
|
|
2932
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
2933
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2934
|
-
Processing by AnonymousController#list as HTML
|
|
2935
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2936
|
-
Processing by AnonymousController#wcid as HTML
|
|
2937
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2938
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2939
|
-
Processing by AnonymousController#list as HTML
|
|
2940
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2941
|
-
Processing by AnonymousController#wcid as HTML
|
|
2942
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2943
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2944
|
-
Processing by AnonymousController#list as HTML
|
|
2945
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2946
|
-
Processing by AnonymousController#wcid as HTML
|
|
2947
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
2948
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
2949
|
-
Processing by AnonymousController#list as HTML
|
|
2950
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2951
|
-
Processing by AnonymousController#list as HTML
|
|
2952
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2953
|
-
Rendered text template (0.1ms)
|
|
2954
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
2955
|
-
Completed 403 Forbidden in 7ms (Views: 6.8ms)
|
|
2956
|
-
Processing by AnonymousController#list as HTML
|
|
2957
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2958
|
-
Processing by AnonymousController#foobar as HTML
|
|
2959
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
2960
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
2961
|
-
Processing by AnonymousController#list as HTML
|
|
2962
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
2963
|
-
Processing by AnonymousController#list as HTML
|
|
2964
|
-
Completed 500 Internal Server Error in 0ms
|
|
2965
|
-
Processing by AnonymousController#list as HTML
|
|
2966
|
-
Completed 500 Internal Server Error in 0ms
|
|
2967
|
-
Processing by AnonymousController#list as HTML
|
|
2968
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2969
|
-
Rendered text template (0.1ms)
|
|
2970
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
2971
|
-
Completed 403 Forbidden in 1ms (Views: 0.4ms)
|
|
2972
|
-
Processing by AnonymousController#list as HTML
|
|
2973
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2974
|
-
Rendered text template (0.0ms)
|
|
2975
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2976
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
2977
|
-
Processing by AnonymousController#list as HTML
|
|
2978
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2979
|
-
Rendered text template (0.1ms)
|
|
2980
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
2981
|
-
Completed 403 Forbidden in 1ms (Views: 0.5ms)
|
|
2982
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
2983
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
2984
|
-
Rendered text template (0.1ms)
|
|
2985
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2986
|
-
Processing by AnonymousController#list as HTML
|
|
2987
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
2988
|
-
Processing by AnonymousController#foobar as HTML
|
|
2989
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
2990
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
2991
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
2992
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
2993
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
2994
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
2995
|
-
Processing by AnonymousController#foobar as HTML
|
|
2996
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
2997
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
2998
|
-
Processing by AnonymousController#wcid as HTML
|
|
2999
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3000
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3001
|
-
Processing by AnonymousController#wcid as HTML
|
|
3002
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3003
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3004
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3005
|
-
Processing by AnonymousController#wcid as HTML
|
|
3006
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3007
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3008
|
-
Processing by AnonymousController#wcid as HTML
|
|
3009
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3010
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3011
|
-
Processing by AnonymousController#wcid as HTML
|
|
3012
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3013
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3014
|
-
Processing by AnonymousController#list as HTML
|
|
3015
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3016
|
-
Processing by AnonymousController#wcid as HTML
|
|
3017
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3018
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3019
|
-
Processing by AnonymousController#list as HTML
|
|
3020
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3021
|
-
Processing by AnonymousController#wcid as HTML
|
|
3022
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3023
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3024
|
-
Processing by AnonymousController#list as HTML
|
|
3025
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3026
|
-
Processing by AnonymousController#wcid as HTML
|
|
3027
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3028
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3029
|
-
Processing by AnonymousController#list as HTML
|
|
3030
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3031
|
-
Processing by AnonymousController#list as HTML
|
|
3032
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3033
|
-
Rendered text template (0.1ms)
|
|
3034
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3035
|
-
Completed 403 Forbidden in 8ms (Views: 7.0ms)
|
|
3036
|
-
Processing by AnonymousController#list as HTML
|
|
3037
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3038
|
-
Rendered text template (0.1ms)
|
|
3039
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3040
|
-
Completed 403 Forbidden in 6ms (Views: 5.1ms)
|
|
3041
|
-
Processing by AnonymousController#list as HTML
|
|
3042
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3043
|
-
Rendered text template (0.1ms)
|
|
3044
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3045
|
-
Completed 403 Forbidden in 5ms (Views: 4.7ms)
|
|
3046
|
-
Processing by AnonymousController#list as HTML
|
|
3047
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3048
|
-
Processing by AnonymousController#foobar as HTML
|
|
3049
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3050
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
3051
|
-
Processing by AnonymousController#list as HTML
|
|
3052
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
3053
|
-
Processing by AnonymousController#list as HTML
|
|
3054
|
-
Completed 500 Internal Server Error in 0ms
|
|
3055
|
-
Processing by AnonymousController#list as HTML
|
|
3056
|
-
Completed 500 Internal Server Error in 0ms
|
|
3057
|
-
Processing by AnonymousController#list as HTML
|
|
3058
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3059
|
-
Rendered text template (0.0ms)
|
|
3060
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
3061
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3062
|
-
Processing by AnonymousController#list as HTML
|
|
3063
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3064
|
-
Rendered text template (0.1ms)
|
|
3065
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3066
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3067
|
-
Processing by AnonymousController#list as HTML
|
|
3068
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3069
|
-
Rendered text template (0.0ms)
|
|
3070
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3071
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3072
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3073
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3074
|
-
Rendered text template (0.0ms)
|
|
3075
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3076
|
-
Processing by AnonymousController#list as HTML
|
|
3077
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3078
|
-
Processing by AnonymousController#foobar as HTML
|
|
3079
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3080
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3081
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3082
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3083
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3084
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
3085
|
-
Processing by AnonymousController#foobar as HTML
|
|
3086
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3087
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3088
|
-
Processing by AnonymousController#wcid as HTML
|
|
3089
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3090
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3091
|
-
Processing by AnonymousController#wcid as HTML
|
|
3092
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3093
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3094
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3095
|
-
Processing by AnonymousController#wcid as HTML
|
|
3096
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3097
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3098
|
-
Processing by AnonymousController#wcid as HTML
|
|
3099
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3100
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3101
|
-
Processing by AnonymousController#wcid as HTML
|
|
3102
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3103
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3104
|
-
Processing by AnonymousController#list as HTML
|
|
3105
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3106
|
-
Processing by AnonymousController#wcid as HTML
|
|
3107
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3108
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3109
|
-
Processing by AnonymousController#list as HTML
|
|
3110
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3111
|
-
Processing by AnonymousController#wcid as HTML
|
|
3112
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3113
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3114
|
-
Processing by AnonymousController#list as HTML
|
|
3115
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3116
|
-
Processing by AnonymousController#wcid as HTML
|
|
3117
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3118
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3119
|
-
Processing by AnonymousController#list as HTML
|
|
3120
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3121
|
-
Processing by AnonymousController#list as HTML
|
|
3122
|
-
Completed 500 Internal Server Error in 3ms
|
|
3123
|
-
Processing by AnonymousController#list as HTML
|
|
3124
|
-
Completed 500 Internal Server Error in 3ms
|
|
3125
|
-
Processing by AnonymousController#foobar as HTML
|
|
3126
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3127
|
-
Completed 500 Internal Server Error in 3ms
|
|
3128
|
-
Processing by AnonymousController#list as HTML
|
|
3129
|
-
Completed 500 Internal Server Error in 2ms
|
|
3130
|
-
Processing by AnonymousController#list as HTML
|
|
3131
|
-
Completed 500 Internal Server Error in 3ms
|
|
3132
|
-
Processing by AnonymousController#list as HTML
|
|
3133
|
-
Completed 500 Internal Server Error in 2ms
|
|
3134
|
-
Processing by AnonymousController#list as HTML
|
|
3135
|
-
Completed 500 Internal Server Error in 2ms
|
|
3136
|
-
Processing by AnonymousController#list as HTML
|
|
3137
|
-
Completed 500 Internal Server Error in 2ms
|
|
3138
|
-
Processing by AnonymousController#list as HTML
|
|
3139
|
-
Completed 500 Internal Server Error in 3ms
|
|
3140
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3141
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3142
|
-
Rendered text template (0.1ms)
|
|
3143
|
-
Completed 200 OK in 9ms (Views: 9.0ms)
|
|
3144
|
-
Processing by AnonymousController#list as HTML
|
|
3145
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3146
|
-
Processing by AnonymousController#foobar as HTML
|
|
3147
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3148
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3149
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3150
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3151
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3152
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
3153
|
-
Processing by AnonymousController#foobar as HTML
|
|
3154
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3155
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3156
|
-
Processing by AnonymousController#wcid as HTML
|
|
3157
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3158
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3159
|
-
Processing by AnonymousController#wcid as HTML
|
|
3160
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3161
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3162
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3163
|
-
Processing by AnonymousController#wcid as HTML
|
|
3164
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3165
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3166
|
-
Processing by AnonymousController#wcid as HTML
|
|
3167
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3168
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3169
|
-
Processing by AnonymousController#wcid as HTML
|
|
3170
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3171
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3172
|
-
Processing by AnonymousController#list as HTML
|
|
3173
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3174
|
-
Processing by AnonymousController#wcid as HTML
|
|
3175
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3176
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3177
|
-
Processing by AnonymousController#list as HTML
|
|
3178
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3179
|
-
Processing by AnonymousController#wcid as HTML
|
|
3180
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3181
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3182
|
-
Processing by AnonymousController#list as HTML
|
|
3183
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
3184
|
-
Processing by AnonymousController#wcid as HTML
|
|
3185
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3186
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3187
|
-
Processing by AnonymousController#list as HTML
|
|
3188
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3189
|
-
Processing by AnonymousController#list as HTML
|
|
3190
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3191
|
-
Rendered text template (0.1ms)
|
|
3192
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3193
|
-
Completed 403 Forbidden in 5ms (Views: 4.8ms)
|
|
3194
|
-
Processing by AnonymousController#list as HTML
|
|
3195
|
-
Completed 500 Internal Server Error in 9ms
|
|
3196
|
-
Processing by AnonymousController#foobar as HTML
|
|
3197
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3198
|
-
Completed 500 Internal Server Error in 11ms
|
|
3199
|
-
Processing by AnonymousController#list as HTML
|
|
3200
|
-
Completed 500 Internal Server Error in 8ms
|
|
3201
|
-
Processing by AnonymousController#list as HTML
|
|
3202
|
-
Completed 500 Internal Server Error in 0ms
|
|
3203
|
-
Processing by AnonymousController#list as HTML
|
|
3204
|
-
Completed 500 Internal Server Error in 9ms
|
|
3205
|
-
Processing by AnonymousController#list as HTML
|
|
3206
|
-
Completed 500 Internal Server Error in 10ms
|
|
3207
|
-
Processing by AnonymousController#list as HTML
|
|
3208
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3209
|
-
Rendered text template (0.0ms)
|
|
3210
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3211
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
3212
|
-
Processing by AnonymousController#list as HTML
|
|
3213
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3214
|
-
Rendered text template (0.0ms)
|
|
3215
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3216
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
3217
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3218
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3219
|
-
Rendered text template (0.0ms)
|
|
3220
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3221
|
-
Processing by AnonymousController#list as HTML
|
|
3222
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3223
|
-
Processing by AnonymousController#foobar as HTML
|
|
3224
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3225
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3226
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3227
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3228
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3229
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
3230
|
-
Processing by AnonymousController#foobar as HTML
|
|
3231
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3232
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3233
|
-
Processing by AnonymousController#wcid as HTML
|
|
3234
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3235
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3236
|
-
Processing by AnonymousController#wcid as HTML
|
|
3237
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3238
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3239
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3240
|
-
Processing by AnonymousController#wcid as HTML
|
|
3241
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3242
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3243
|
-
Processing by AnonymousController#wcid as HTML
|
|
3244
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3245
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3246
|
-
Processing by AnonymousController#wcid as HTML
|
|
3247
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3248
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3249
|
-
Processing by AnonymousController#list as HTML
|
|
3250
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
3251
|
-
Processing by AnonymousController#wcid as HTML
|
|
3252
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3253
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3254
|
-
Processing by AnonymousController#list as HTML
|
|
3255
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3256
|
-
Processing by AnonymousController#wcid as HTML
|
|
3257
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3258
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3259
|
-
Processing by AnonymousController#list as HTML
|
|
3260
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3261
|
-
Processing by AnonymousController#wcid as HTML
|
|
3262
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3263
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3264
|
-
Processing by AnonymousController#list as HTML
|
|
3265
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3266
|
-
Processing by AnonymousController#list as HTML
|
|
3267
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3268
|
-
Rendered text template (0.1ms)
|
|
3269
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3270
|
-
Completed 403 Forbidden in 7ms (Views: 6.1ms)
|
|
3271
|
-
Processing by AnonymousController#list as HTML
|
|
3272
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3273
|
-
Processing by AnonymousController#foobar as HTML
|
|
3274
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3275
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
3276
|
-
Processing by AnonymousController#list as HTML
|
|
3277
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
3278
|
-
Processing by AnonymousController#list as HTML
|
|
3279
|
-
Completed 500 Internal Server Error in 0ms
|
|
3280
|
-
Processing by AnonymousController#list as HTML
|
|
3281
|
-
Completed 500 Internal Server Error in 0ms
|
|
3282
|
-
Processing by AnonymousController#list as HTML
|
|
3283
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3284
|
-
Rendered text template (0.0ms)
|
|
3285
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
3286
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3287
|
-
Processing by AnonymousController#list as HTML
|
|
3288
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3289
|
-
Rendered text template (0.1ms)
|
|
3290
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3291
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3292
|
-
Processing by AnonymousController#list as HTML
|
|
3293
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3294
|
-
Rendered text template (0.3ms)
|
|
3295
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3296
|
-
Completed 403 Forbidden in 1ms (Views: 0.9ms)
|
|
3297
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3298
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3299
|
-
Rendered text template (0.0ms)
|
|
3300
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3301
|
-
Processing by AnonymousController#list as HTML
|
|
3302
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3303
|
-
Processing by AnonymousController#foobar as HTML
|
|
3304
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3305
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3306
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3307
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3308
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3309
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
3310
|
-
Processing by AnonymousController#foobar as HTML
|
|
3311
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3312
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3313
|
-
Processing by AnonymousController#wcid as HTML
|
|
3314
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3315
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3316
|
-
Processing by AnonymousController#wcid as HTML
|
|
3317
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3318
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3319
|
-
Completed 400 Bad Request in 1ms (Views: 0.2ms)
|
|
3320
|
-
Processing by AnonymousController#wcid as HTML
|
|
3321
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3322
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3323
|
-
Processing by AnonymousController#wcid as HTML
|
|
3324
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3325
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3326
|
-
Processing by AnonymousController#wcid as HTML
|
|
3327
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3328
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3329
|
-
Processing by AnonymousController#list as HTML
|
|
3330
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3331
|
-
Processing by AnonymousController#wcid as HTML
|
|
3332
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3333
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3334
|
-
Processing by AnonymousController#list as HTML
|
|
3335
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3336
|
-
Processing by AnonymousController#wcid as HTML
|
|
3337
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3338
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3339
|
-
Processing by AnonymousController#list as HTML
|
|
3340
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3341
|
-
Processing by AnonymousController#wcid as HTML
|
|
3342
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3343
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3344
|
-
Processing by AnonymousController#list as HTML
|
|
3345
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3346
|
-
Processing by AnonymousController#list as HTML
|
|
3347
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3348
|
-
Rendered text template (0.4ms)
|
|
3349
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3350
|
-
Completed 403 Forbidden in 7ms (Views: 6.4ms)
|
|
3351
|
-
Processing by AnonymousController#list as HTML
|
|
3352
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3353
|
-
Processing by AnonymousController#foobar as HTML
|
|
3354
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3355
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
3356
|
-
Processing by AnonymousController#list as HTML
|
|
3357
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3358
|
-
Processing by AnonymousController#list as HTML
|
|
3359
|
-
Completed 500 Internal Server Error in 0ms
|
|
3360
|
-
Processing by AnonymousController#list as HTML
|
|
3361
|
-
Completed 500 Internal Server Error in 1ms
|
|
3362
|
-
Processing by AnonymousController#list as HTML
|
|
3363
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3364
|
-
Rendered text template (0.0ms)
|
|
3365
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
3366
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3367
|
-
Processing by AnonymousController#list as HTML
|
|
3368
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3369
|
-
Rendered text template (0.0ms)
|
|
3370
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3371
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
3372
|
-
Processing by AnonymousController#list as HTML
|
|
3373
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3374
|
-
Rendered text template (0.0ms)
|
|
3375
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3376
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3377
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3378
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3379
|
-
Rendered text template (0.1ms)
|
|
3380
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
3381
|
-
Processing by AnonymousController#list as HTML
|
|
3382
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3383
|
-
Processing by AnonymousController#foobar as HTML
|
|
3384
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3385
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3386
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3387
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3388
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3389
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
3390
|
-
Processing by AnonymousController#foobar as HTML
|
|
3391
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3392
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3393
|
-
Processing by AnonymousController#wcid as HTML
|
|
3394
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3395
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3396
|
-
Processing by AnonymousController#wcid as HTML
|
|
3397
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3398
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3399
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3400
|
-
Processing by AnonymousController#wcid as HTML
|
|
3401
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3402
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3403
|
-
Processing by AnonymousController#wcid as HTML
|
|
3404
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3405
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3406
|
-
Processing by AnonymousController#wcid as HTML
|
|
3407
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3408
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3409
|
-
Processing by AnonymousController#list as HTML
|
|
3410
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3411
|
-
Processing by AnonymousController#wcid as HTML
|
|
3412
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3413
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3414
|
-
Processing by AnonymousController#list as HTML
|
|
3415
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3416
|
-
Processing by AnonymousController#wcid as HTML
|
|
3417
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3418
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3419
|
-
Processing by AnonymousController#list as HTML
|
|
3420
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3421
|
-
Processing by AnonymousController#wcid as HTML
|
|
3422
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3423
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3424
|
-
Processing by AnonymousController#list as HTML
|
|
3425
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3426
|
-
Processing by AnonymousController#list as HTML
|
|
3427
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3428
|
-
Rendered text template (0.4ms)
|
|
3429
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3430
|
-
Completed 403 Forbidden in 6ms (Views: 5.2ms)
|
|
3431
|
-
Processing by AnonymousController#list as HTML
|
|
3432
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3433
|
-
Processing by AnonymousController#foobar as HTML
|
|
3434
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3435
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
3436
|
-
Processing by AnonymousController#list as HTML
|
|
3437
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
3438
|
-
Processing by AnonymousController#list as HTML
|
|
3439
|
-
Completed 500 Internal Server Error in 0ms
|
|
3440
|
-
Processing by AnonymousController#list as HTML
|
|
3441
|
-
Completed 500 Internal Server Error in 0ms
|
|
3442
|
-
Processing by AnonymousController#list as HTML
|
|
3443
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3444
|
-
Rendered text template (0.0ms)
|
|
3445
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
3446
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3447
|
-
Processing by AnonymousController#list as HTML
|
|
3448
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3449
|
-
Rendered text template (0.0ms)
|
|
3450
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3451
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3452
|
-
Processing by AnonymousController#list as HTML
|
|
3453
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3454
|
-
Rendered text template (0.0ms)
|
|
3455
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3456
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3457
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3458
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3459
|
-
Rendered text template (0.0ms)
|
|
3460
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3461
|
-
Processing by AnonymousController#list as HTML
|
|
3462
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3463
|
-
Processing by AnonymousController#foobar as HTML
|
|
3464
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3465
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3466
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3467
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3468
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3469
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
3470
|
-
Processing by AnonymousController#foobar as HTML
|
|
3471
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3472
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3473
|
-
Processing by AnonymousController#wcid as HTML
|
|
3474
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3475
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3476
|
-
Processing by AnonymousController#wcid as HTML
|
|
3477
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3478
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3479
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3480
|
-
Processing by AnonymousController#wcid as HTML
|
|
3481
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3482
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3483
|
-
Processing by AnonymousController#wcid as HTML
|
|
3484
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3485
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3486
|
-
Processing by AnonymousController#wcid as HTML
|
|
3487
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3488
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3489
|
-
Processing by AnonymousController#list as HTML
|
|
3490
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3491
|
-
Processing by AnonymousController#wcid as HTML
|
|
3492
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3493
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3494
|
-
Processing by AnonymousController#list as HTML
|
|
3495
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3496
|
-
Processing by AnonymousController#wcid as HTML
|
|
3497
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3498
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3499
|
-
Processing by AnonymousController#list as HTML
|
|
3500
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3501
|
-
Processing by AnonymousController#wcid as HTML
|
|
3502
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3503
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3504
|
-
Processing by AnonymousController#list as HTML
|
|
3505
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3506
|
-
Processing by AnonymousController#list as HTML
|
|
3507
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3508
|
-
Rendered text template (0.4ms)
|
|
3509
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3510
|
-
Completed 403 Forbidden in 8ms (Views: 7.7ms)
|
|
3511
|
-
Processing by AnonymousController#list as HTML
|
|
3512
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3513
|
-
Processing by AnonymousController#foobar as HTML
|
|
3514
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3515
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
3516
|
-
Processing by AnonymousController#list as HTML
|
|
3517
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
3518
|
-
Processing by AnonymousController#list as HTML
|
|
3519
|
-
Completed 500 Internal Server Error in 0ms
|
|
3520
|
-
Processing by AnonymousController#list as HTML
|
|
3521
|
-
Completed 500 Internal Server Error in 0ms
|
|
3522
|
-
Processing by AnonymousController#list as HTML
|
|
3523
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3524
|
-
Rendered text template (0.0ms)
|
|
3525
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
3526
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3527
|
-
Processing by AnonymousController#list as HTML
|
|
3528
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3529
|
-
Rendered text template (0.0ms)
|
|
3530
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3531
|
-
Completed 403 Forbidden in 0ms (Views: 0.2ms)
|
|
3532
|
-
Processing by AnonymousController#list as HTML
|
|
3533
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3534
|
-
Rendered text template (0.1ms)
|
|
3535
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3536
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3537
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3538
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3539
|
-
Rendered text template (0.1ms)
|
|
3540
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3541
|
-
Processing by AnonymousController#list as HTML
|
|
3542
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3543
|
-
Processing by AnonymousController#foobar as HTML
|
|
3544
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3545
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3546
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3547
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3548
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3549
|
-
Completed 404 Not Found in 0ms (Views: 0.2ms)
|
|
3550
|
-
Processing by AnonymousController#foobar as HTML
|
|
3551
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3552
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3553
|
-
Processing by AnonymousController#wcid as HTML
|
|
3554
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3555
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3556
|
-
Processing by AnonymousController#wcid as HTML
|
|
3557
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3558
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3559
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3560
|
-
Processing by AnonymousController#wcid as HTML
|
|
3561
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3562
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3563
|
-
Processing by AnonymousController#wcid as HTML
|
|
3564
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3565
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3566
|
-
Processing by AnonymousController#wcid as HTML
|
|
3567
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3568
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3569
|
-
Processing by AnonymousController#list as HTML
|
|
3570
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3571
|
-
Processing by AnonymousController#wcid as HTML
|
|
3572
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3573
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3574
|
-
Processing by AnonymousController#list as HTML
|
|
3575
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3576
|
-
Processing by AnonymousController#wcid as HTML
|
|
3577
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3578
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3579
|
-
Processing by AnonymousController#list as HTML
|
|
3580
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
|
3581
|
-
Processing by AnonymousController#wcid as HTML
|
|
3582
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3583
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3584
|
-
Processing by AnonymousController#list as HTML
|
|
3585
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3586
|
-
Processing by AnonymousController#list as HTML
|
|
3587
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3588
|
-
Rendered text template (0.4ms)
|
|
3589
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3590
|
-
Completed 403 Forbidden in 11ms (Views: 9.9ms)
|
|
3591
|
-
Processing by AnonymousController#list as HTML
|
|
3592
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3593
|
-
Processing by AnonymousController#foobar as HTML
|
|
3594
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3595
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
3596
|
-
Processing by AnonymousController#list as HTML
|
|
3597
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
3598
|
-
Processing by AnonymousController#list as HTML
|
|
3599
|
-
Completed 500 Internal Server Error in 0ms
|
|
3600
|
-
Processing by AnonymousController#list as HTML
|
|
3601
|
-
Completed 500 Internal Server Error in 0ms
|
|
3602
|
-
Processing by AnonymousController#list as HTML
|
|
3603
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3604
|
-
Rendered text template (0.0ms)
|
|
3605
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
3606
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3607
|
-
Processing by AnonymousController#list as HTML
|
|
3608
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3609
|
-
Rendered text template (0.1ms)
|
|
3610
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3611
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
3612
|
-
Processing by AnonymousController#list as HTML
|
|
3613
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3614
|
-
Rendered text template (0.0ms)
|
|
3615
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3616
|
-
Completed 403 Forbidden in 0ms (Views: 0.3ms)
|
|
3617
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3618
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3619
|
-
Rendered text template (0.0ms)
|
|
3620
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3621
|
-
Processing by AnonymousController#list as HTML
|
|
3622
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3623
|
-
Processing by AnonymousController#foobar as HTML
|
|
3624
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3625
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3626
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3627
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3628
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3629
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
3630
|
-
Processing by AnonymousController#foobar as HTML
|
|
3631
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3632
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3633
|
-
Processing by AnonymousController#wcid as HTML
|
|
3634
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3635
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3636
|
-
Processing by AnonymousController#wcid as HTML
|
|
3637
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3638
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3639
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3640
|
-
Processing by AnonymousController#wcid as HTML
|
|
3641
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3642
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3643
|
-
Processing by AnonymousController#wcid as HTML
|
|
3644
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3645
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3646
|
-
Processing by AnonymousController#wcid as HTML
|
|
3647
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3648
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3649
|
-
Processing by AnonymousController#list as HTML
|
|
3650
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3651
|
-
Processing by AnonymousController#wcid as HTML
|
|
3652
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3653
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3654
|
-
Processing by AnonymousController#list as HTML
|
|
3655
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3656
|
-
Processing by AnonymousController#wcid as HTML
|
|
3657
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3658
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3659
|
-
Processing by AnonymousController#list as HTML
|
|
3660
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3661
|
-
Processing by AnonymousController#wcid as HTML
|
|
3662
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3663
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3664
|
-
Processing by AnonymousController#list as HTML
|
|
3665
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3666
|
-
Processing by AnonymousController#list as HTML
|
|
3667
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3668
|
-
Rendered text template (0.1ms)
|
|
3669
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3670
|
-
Completed 403 Forbidden in 7ms (Views: 6.4ms)
|
|
3671
|
-
Processing by AnonymousController#list as HTML
|
|
3672
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
|
3673
|
-
Processing by AnonymousController#foobar as HTML
|
|
3674
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3675
|
-
Completed 200 OK in 1ms (Views: 0.1ms)
|
|
3676
|
-
Processing by AnonymousController#list as HTML
|
|
3677
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
3678
|
-
Processing by AnonymousController#list as HTML
|
|
3679
|
-
Completed 500 Internal Server Error in 0ms
|
|
3680
|
-
Processing by AnonymousController#list as HTML
|
|
3681
|
-
Completed 500 Internal Server Error in 1ms
|
|
3682
|
-
Processing by AnonymousController#list as HTML
|
|
3683
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3684
|
-
Rendered text template (0.0ms)
|
|
3685
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
3686
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3687
|
-
Processing by AnonymousController#list as HTML
|
|
3688
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3689
|
-
Rendered text template (0.1ms)
|
|
3690
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3691
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3692
|
-
Processing by AnonymousController#list as HTML
|
|
3693
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3694
|
-
Rendered text template (0.0ms)
|
|
3695
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3696
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3697
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3698
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3699
|
-
Rendered text template (0.0ms)
|
|
3700
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3701
|
-
Processing by AnonymousController#list as HTML
|
|
3702
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
|
3703
|
-
Processing by AnonymousController#foobar as HTML
|
|
3704
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3705
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3706
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3707
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3708
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3709
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
3710
|
-
Processing by AnonymousController#foobar as HTML
|
|
3711
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3712
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3713
|
-
Processing by AnonymousController#wcid as HTML
|
|
3714
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3715
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3716
|
-
Processing by AnonymousController#wcid as HTML
|
|
3717
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3718
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3719
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3720
|
-
Processing by AnonymousController#wcid as HTML
|
|
3721
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3722
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3723
|
-
Processing by AnonymousController#wcid as HTML
|
|
3724
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3725
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3726
|
-
Processing by AnonymousController#wcid as HTML
|
|
3727
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3728
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3729
|
-
Processing by AnonymousController#list as HTML
|
|
3730
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3731
|
-
Processing by AnonymousController#wcid as HTML
|
|
3732
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3733
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3734
|
-
Processing by AnonymousController#list as HTML
|
|
3735
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3736
|
-
Processing by AnonymousController#wcid as HTML
|
|
3737
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3738
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3739
|
-
Processing by AnonymousController#list as HTML
|
|
3740
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3741
|
-
Processing by AnonymousController#wcid as HTML
|
|
3742
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3743
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3744
|
-
Processing by AnonymousController#list as HTML
|
|
3745
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
|
3746
|
-
Processing by AnonymousController#list as HTML
|
|
3747
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3748
|
-
Rendered text template (0.5ms)
|
|
3749
|
-
Filter chain halted as :ensure_valid_chatops_signature rendered or redirected
|
|
3750
|
-
Completed 403 Forbidden in 8ms (Views: 7.2ms)
|
|
3751
|
-
Processing by AnonymousController#list as HTML
|
|
3752
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3753
|
-
Processing by AnonymousController#foobar as HTML
|
|
3754
|
-
Parameters: {"room_id"=>"123", "user"=>"bhuga", "params"=>{}, "chatop"=>"foobar", "anonymou"=>{"room_id"=>"123", "user"=>"bhuga", "params"=>{}}}
|
|
3755
|
-
Completed 200 OK in 1ms (Views: 0.2ms)
|
|
3756
|
-
Processing by AnonymousController#list as HTML
|
|
3757
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3758
|
-
Processing by AnonymousController#list as HTML
|
|
3759
|
-
Completed 500 Internal Server Error in 0ms
|
|
3760
|
-
Processing by AnonymousController#list as HTML
|
|
3761
|
-
Completed 500 Internal Server Error in 1ms
|
|
3762
|
-
Processing by AnonymousController#list as HTML
|
|
3763
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3764
|
-
Rendered text template (0.1ms)
|
|
3765
|
-
Filter chain halted as :ensure_chatops_authenticated rendered or redirected
|
|
3766
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3767
|
-
Processing by AnonymousController#list as HTML
|
|
3768
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3769
|
-
Rendered text template (0.1ms)
|
|
3770
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3771
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3772
|
-
Processing by AnonymousController#list as HTML
|
|
3773
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3774
|
-
Rendered text template (0.1ms)
|
|
3775
|
-
Filter chain halted as :ensure_valid_chatops_timestamp rendered or redirected
|
|
3776
|
-
Completed 403 Forbidden in 1ms (Views: 0.3ms)
|
|
3777
|
-
Processing by AnonymousController#non_chatop_method as HTML
|
|
3778
|
-
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
|
3779
|
-
Rendered text template (0.0ms)
|
|
3780
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
3781
|
-
Processing by AnonymousController#list as HTML
|
|
3782
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
|
3783
|
-
Processing by AnonymousController#foobar as HTML
|
|
3784
|
-
Parameters: {"params"=>nil, "chatop"=>"foobar"}
|
|
3785
|
-
Filter chain halted as :ensure_user_given rendered or redirected
|
|
3786
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3787
|
-
Processing by AnonymousController#unexcluded_chatop_method as HTML
|
|
3788
|
-
Filter chain halted as :ensure_method_exists rendered or redirected
|
|
3789
|
-
Completed 404 Not Found in 0ms (Views: 0.1ms)
|
|
3790
|
-
Processing by AnonymousController#foobar as HTML
|
|
3791
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"foobar"}
|
|
3792
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3793
|
-
Processing by AnonymousController#wcid as HTML
|
|
3794
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"foo"}, "chatop"=>"wcid"}
|
|
3795
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3796
|
-
Processing by AnonymousController#wcid as HTML
|
|
3797
|
-
Parameters: {"user"=>"foo", "params"=>nil, "chatop"=>"wcid"}
|
|
3798
|
-
Filter chain halted as :ensure_app_given rendered or redirected
|
|
3799
|
-
Completed 400 Bad Request in 0ms (Views: 0.2ms)
|
|
3800
|
-
Processing by AnonymousController#wcid as HTML
|
|
3801
|
-
Parameters: {"user"=>"foo", "params"=>{"app"=>"nope"}, "chatop"=>"wcid"}
|
|
3802
|
-
Completed 400 Bad Request in 0ms (Views: 0.3ms)
|
|
3803
|
-
Processing by AnonymousController#wcid as HTML
|
|
3804
|
-
Parameters: {"params"=>{"app"=>"foo"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3805
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3806
|
-
Processing by AnonymousController#wcid as HTML
|
|
3807
|
-
Parameters: {"params"=>{"app"=>"nope"}, "room_id"=>nil, "user"=>"foo", "chatop"=>"wcid"}
|
|
3808
|
-
Completed 400 Bad Request in 0ms (Views: 0.1ms)
|
|
3809
|
-
Processing by AnonymousController#list as HTML
|
|
3810
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
3811
|
-
Processing by AnonymousController#wcid as HTML
|
|
3812
|
-
Parameters: {"params"=>{"app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3813
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3814
|
-
Processing by AnonymousController#list as HTML
|
|
3815
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3816
|
-
Processing by AnonymousController#wcid as HTML
|
|
3817
|
-
Parameters: {"params"=>{"vegetable"=>"green celery", "fruit"=>"apple", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3818
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3819
|
-
Processing by AnonymousController#list as HTML
|
|
3820
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3821
|
-
Processing by AnonymousController#wcid as HTML
|
|
3822
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3823
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|
|
3824
|
-
Processing by AnonymousController#list as HTML
|
|
3825
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3826
|
-
Processing by AnonymousController#list as HTML
|
|
3827
|
-
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
3828
|
-
Processing by AnonymousController#wcid as HTML
|
|
3829
|
-
Parameters: {"params"=>{"this-is-sparta"=>"true", "app"=>"foobar"}, "room_id"=>"123", "user"=>"bhuga", "chatop"=>"wcid"}
|
|
3830
|
-
Completed 200 OK in 0ms (Views: 0.1ms)
|