summaryrefslogtreecommitdiff
path: root/config/routes.rb
blob: ff9a773f92ee067f37199afe9c3d882eb9e73426 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

Rails.application.routes.draw do
  # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html

  # Defines the root path route ("/")
  # root "articles#index"
  namespace :api do
    resources :user_accounts, only: %i[show create]
  end
end