d72ad2d43b
Show method, Home page, redirection validation LinksController show method
8 lines
134 B
Ruby
8 lines
134 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rails.application.routes.draw do
|
|
root 'links#home'
|
|
|
|
get '/:slug', to: 'links#show', as: :short
|
|
end
|