API de comptabilité horaire.
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
1234567891011 |
- 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
- end
- end
- end
|