Adding API for favouriting a status
This commit is contained in:
parent
ffe48fd7c6
commit
f099bc6091
|
@ -15,4 +15,9 @@ class Api::StatusesController < ApiController
|
|||
@status = ReblogService.new.(current_user.account, Status.find(params[:id]))
|
||||
render action: :show
|
||||
end
|
||||
|
||||
def favourite
|
||||
@status = FavouriteService.new.(current_user.account, Status.find(params[:id])).status
|
||||
render action: :show
|
||||
end
|
||||
end
|
||||
|
|
|
@ -26,6 +26,7 @@ Rails.application.routes.draw do
|
|||
resources :statuses, only: [:create, :show] do
|
||||
member do
|
||||
post :reblog
|
||||
post :favourite
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Reference in a new issue