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 trialBen Leonard
1,927 PointsSaving Models and Redirecting Code Challenge - Building Social Features
Hey, I'm stuck on this challenge. Could anyone who's completed it, give me some insight.
class UserFriendshipsController < ApplicationController
def create
@user_friendship = current_user.user_friendship.new(user: current_user, friend: @friend)
flash[:success] = "Friendship created." if @user_friendship.saved?
end
end
Cheers, Ben
2 Answers
Rared Developer
9,008 PointsHey, ran into the same issue but found a solution from a while back. It wasn't the greatest question in the world (in fact, it's the only one I hadn't been able to get past so far), but what are you going to do. Hope this helps.
*Forgive any markdown issues :)
Here's that post
def create
@user_friendship = UserFriendship.new(params[:user_friendship])
if @user_friendship.save
flash[:success] = "Friendship created."
end
end
```
Rared Developer
9,008 Points...just realized your post was from over a year ago, lol