Files
bit/config/routes.rb
T
Juan Rodriguez f63be42b4c feat: Create users
Users migration, model, controller. user_id to links. signup view
2021-06-14 08:24:34 -05:00

11 lines
218 B
Ruby

# frozen_string_literal: true
Rails.application.routes.draw do
root 'links#index'
get '/:slug', to: 'links#redirect', as: :short
resources :links, only: %i[create]
resources :users, only: %i[new create]
end