This commit is contained in:
Priit Tark 2015-06-12 12:35:50 +03:00
parent 0aa8058022
commit 51d22af52b
9 changed files with 4779 additions and 2 deletions

View file

@ -49,6 +49,8 @@ module Registry
# Instead, the errors will propagate normally just like in other Active Record callbacks.
config.active_record.raise_in_transactional_callbacks = true
config.active_record.schema_format = :sql
config.generators do |g|
g.stylesheets false
g.javascripts false

View file

@ -224,6 +224,10 @@ Rails.application.routes.draw do
get 'logout' => '/devise/sessions#destroy'
end
authenticate :user do
mount Que::Web, at: 'que'
end
root 'dashboards#show'
end