about summary refs log tree commit diff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 8014a2fb2..3167cbdeb 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -9,7 +9,17 @@ Rails.application.routes.draw do
   }
 
   resources :accounts, path: 'users', only: [:show], param: :username do
-    resources :stream_entries, path: 'updates', only: [:show]
+    member do
+      post :follow
+      post :unfollow
+    end
+
+    resources :stream_entries, path: 'updates', only: [:show] do
+      member do
+        post :reblog
+        post :favourite
+      end
+    end
   end
 
   namespace :api do