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

Ruby

Ben Leonard
Ben Leonard
1,927 Points

Saving 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

Hey, 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
            ```

...just realized your post was from over a year ago, lol