API de comptabilité horaire.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- Rails.application.routes.draw do
- namespace :api, defaults: { format: :json } do
- namespace :v1 do
- resources :users
- resources :tokens, only: %i[create]
- resources :activities do
- resources :tasks
- end
- resources :tasks
- end
- end
- end
|