Files
postter/config/routes.rb
João Victor Geonizeli 70e25e8399 add user follow feature
2022-02-27 16:13:52 -03:00

7 lines
219 B
Ruby

Rails.application.routes.draw do
resources :user_follows, only: [:create, :destroy]
resources :users, only: [:show]
# Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
end