<%= f.hidden_field :tab, value: @tab %>
diff --git a/config/routes.rb b/config/routes.rb
index a190967b6..2c972a2cd 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -156,6 +156,7 @@ Rails.application.routes.draw do
get "/connect/:slug" => "chat_channels#index"
post "/chat_channels/create_chat" => "chat_channels#create_chat"
post "/chat_channels/block_chat" => "chat_channels#block_chat"
+ get "/live/:username" => "twitch_live_streams#show"
post "/pusher/auth" => "pusher#auth"
diff --git a/spec/requests/pages_spec.rb b/spec/requests/pages_spec.rb
index 21d99f106..1574ea6c6 100644
--- a/spec/requests/pages_spec.rb
+++ b/spec/requests/pages_spec.rb
@@ -77,7 +77,7 @@ RSpec.describe "Pages", type: :request do
context "when nothing is live" do
it "shows the correct message" do
get "/live"
- expect(response.body).to include("Nothing is live right now")
+ expect(response.body).to include("We are working on more ways to bring live coding to the community")
end
end
end