From 5eaf0288fdd9c2845ba7ef284f97e71ce48887f8 Mon Sep 17 00:00:00 2001 From: Daniel Nitsikopoulos Date: Mon, 30 Jan 2023 21:29:35 +1100 Subject: [PATCH] Switch media creation to get --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 4fce10e..c8b2851 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -11,7 +11,7 @@ module Adamantium scope "micropub" do get "/", to: "site.config" post "/", to: "posts.handle" - post "/media", to: "media.create" + get "/media", to: "media.create" end get "/", to: "site.home"