summaryrefslogtreecommitdiff
path: root/config/routes.rb
blob: b0c276c18c29c21622d05baf95f2c629fbb7a549 (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"
  scope module: 'api' do
    resources :accounts, only: [:create]
  end
end