7 lines
151 B
Ruby
7 lines
151 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rails.application.routes.draw do
|
|
root to: 'home#show'
|
|
|
|
resources :membership_applications, only: %i[new create]
|
|
end
|