about summary refs log tree commit diff stats
path: root/config
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 18:58:50 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 18:58:50 -0500
commit9d8deddb0a9df7d4d7d4b649ddf01b15570719e0 (patch)
tree3e98477e2bf2e38a6c0bd372a417ac507950d194 /config
parenta30b6daedb8b71606abe0e83f82e1f7c356cab6b (diff)
downloadthoughts-9d8deddb0a9df7d4d7d4b649ddf01b15570719e0.tar.gz
thoughts-9d8deddb0a9df7d4d7d4b649ddf01b15570719e0.tar.bz2
thoughts-9d8deddb0a9df7d4d7d4b649ddf01b15570719e0.zip
Moved webmentions to a single endpoint
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 21e1517..76378c4 100644 --- a/config/routes.rb +++ b/config/routes.rb
@@ -51,7 +51,6 @@ Rails.application.routes.draw do
51 member do 51 member do
52 post 'upvote' 52 post 'upvote'
53 post 'downvote' 53 post 'downvote'
54 post 'webmention'
55 54
56 resources :comments, only: [:create] 55 resources :comments, only: [:create]
57 end 56 end
@@ -82,4 +81,6 @@ Rails.application.routes.draw do
82 post 'downvote' 81 post 'downvote'
83 end 82 end
84 end 83 end
84
85 resources :webmentions, only: [:create]
85end 86end