From c605b828b53165cb0161a1885e03202013b63f52 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 6 Mar 2016 12:51:55 +0100 Subject: Adding routes to follow, unfollow, favourite and reblog (locally known models) --- config/routes.rb | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'config') 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 -- cgit