tab/config/routes.rb
Ilion Beyst a3a7ff8c44 Revert "Merge branch 'master' into filter-datatables"
This reverts commit 78863c40b7, reversing
changes made to bbaa070cca.
2015-09-10 22:25:52 +02:00

10 lines
266 B
Ruby

Rails.application.routes.draw do
devise_for :users, controllers: {
omniauth_callbacks: 'callbacks'
}
root to: 'high_voltage/pages#show', id: "landing"
resources :transactions, only: [:new, :index, :create]
resources :users, only: [:show, :index]
end