From bf54c278e9864ebbb9f85474241f6e182414973b Mon Sep 17 00:00:00 2001 From: Trevor Vallender Date: Thu, 5 Oct 2023 15:24:04 +0100 Subject: [PATCH] =?UTF-8?q?Allow=20/=CE=BCposts=20as=20a=20route?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/routes.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/routes.rb b/config/routes.rb index 9cd5981..b74cf22 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -4,6 +4,7 @@ Rails.application.routes.draw do default_url_options :host => "tsvallender.co.uk" root "home_pages#index" + get "μposts", to: "microposts#index" # Users and sessions resources :users, only: [:new, :create, :show, :edit, :update]