routes.rb 396 Bytes
# frozen_string_literal: true

# frozen_string_literal: true

Rails.application.routes.draw do
  devise_for :users,
             path_names: {
               registration: 'signup'
             },
             controllers: {
               registrations: 'v1/registrations'
             }
  # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html
end