Added Who's Playing? screen
This commit is contained in:
@@ -24,4 +24,4 @@ test:
|
||||
adapter: sqlite3
|
||||
database: db/test.sqlite3
|
||||
pool: 5
|
||||
timeout: 5000
|
||||
timeout: 5000
|
||||
|
||||
@@ -6,6 +6,8 @@ Redstoner::Application.configure do
|
||||
# since you don't have to restart the web server when you make code changes.
|
||||
config.cache_classes = false
|
||||
|
||||
config.action_controller.perform_caching = true
|
||||
|
||||
# Log error messages when you accidentally call methods on nil.
|
||||
config.whiny_nils = true
|
||||
|
||||
@@ -43,4 +45,4 @@ Redstoner::Application.configure do
|
||||
password: ENV["GMAIL_PASSWORD"],
|
||||
}
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
@@ -4,10 +4,11 @@ Redstoner::Application.routes.draw do
|
||||
resources :comments
|
||||
end
|
||||
|
||||
resources :statics, only: [:home, :donate], path: '/' do
|
||||
resources :statics, only: [:home, :donate, :online], path: '/' do
|
||||
collection do
|
||||
get 'donate'
|
||||
get 'home'
|
||||
get 'online'
|
||||
get 'index'
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user