3e8bdee17a
stimulus links controller, tailwindcss setup, links controller post route, tests updated Generate short links view
10 lines
176 B
Ruby
10 lines
176 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rails.application.routes.draw do
|
|
root 'links#index'
|
|
|
|
get '/:slug', to: 'links#redirect', as: :short
|
|
|
|
resources :links, only: [:create]
|
|
end
|