24 lines
502 B
Ruby
24 lines
502 B
Ruby
class FollowsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
load_and_authorize_resource
|
|
|
|
def create
|
|
followable = find_followable
|
|
@follow = Follow.create(user: current_user, followable: followable)
|
|
render :refresh_follow_button
|
|
end
|
|
|
|
def destroy
|
|
@follow = Follow.find(params[:id])
|
|
@follow.destroy
|
|
render :refresh_follow_button
|
|
end
|
|
|
|
private
|
|
|
|
def find_followable
|
|
params[:followable_type].constantize.find(params[:followable_id])
|
|
end
|
|
|
|
end
|