Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Frankie Rosa
1,915 PointsNameError in UserFriendshipsController#new ( PLS HELP)
uninitialized constant User::UserFriendship app/controllers/user_friendships_controller.rb:8:in `new'
User_friendships_controller.rb
class UserFriendshipsController < ApplicationController before_filter :authenticate_user!, only: [:new]
def new
if params[:friend_id]
@friend = User.where(profile_name: params[:friend_id]).first
raise ActiveRecord::RecordNotFound if @friend.nil?
@user_friendships = current_user.user_friendships.new(friend: @friend)
else
flash[:error] = "Friend Required"
end
rescue ActiveRecord::RecordNotFound render file: 'public/404', status: :not_found end
def create
if params[:friend_id]
@friend = User.where(profile_name: params[:friend_id]).first
@user_friendship = current_user.user_friendships.new(friend: @friend)
@user_friendship.save
flash[:success] = "You are now friends with #{@friend.full_name}"
redirect_to profile_path(@friend)
else
flash[:error] = "Friend required"
redirect_to root_path
end
end
end