blob: 8a789a2f574bb10b99a980e809a211c2dfe6ebcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# 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
post '/authenticate', to: 'authentications#create'
delete '/logout', to: 'authentications#destroy'
get '/user_account', to: 'user_accounts#show'
resources :user_accounts, only: %i[create]
resources :refresh_tokens, only: %i[create]
end
end
|