Erick Saavedra

Joined

4,130 Experience
41 Lessons Completed
0 Questions Solved

Activity

Other solution if errors partial is not rendering

def create
@tweet = Current.user.tweets.new(tweet_params)
if @tweet.save
redirect_to tweets_path, notice: "Tweet was scheduled successfully"
else
render :new, status: :unprocessable_entity
end
end

Thanks!!

thanks!