mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
14 lines
239 B
Ruby
14 lines
239 B
Ruby
Rails.application.routes.draw do
|
|
get 'points/index'
|
|
resources :imports
|
|
root to: 'home#index'
|
|
devise_for :users
|
|
|
|
get 'points', to: 'points#index'
|
|
|
|
namespace :api do
|
|
namespace :v1 do
|
|
resources :points
|
|
end
|
|
end
|
|
end
|