9 lines
175 B
Ruby
9 lines
175 B
Ruby
class Profiles::FollowersController < ApplicationController
|
|
before_action :set_profile
|
|
|
|
private
|
|
|
|
def set_profile
|
|
@profile = Profile.find params[:profile_id]
|
|
end
|
|
end
|