Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7545149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T08:51:15+00:00 2026-05-30T08:51:15+00:00

def new @user = User.find(session[:this_user]) @message = Message.new @people= People.order(is_active DESC, first_name, last_name) end

  • 0
def new
  @user = User.find(session[:this_user])
  @message = Message.new    
  @people= People.order("is_active DESC, first_name, last_name")
end

When the create action fails validation, I need to set up the above variables again, creating an action that looks like:

def create
  @message = Message.new(params[:message])  
  if @message.save
    redirect_to(messages_path, :notice => 'Message was successfully created.') 
  else
    @user = User.find(session[:this_user])
    @message = Message.new    
    @people= People.order("is_active DESC, first_name, last_name")
    render :action => "new" 
end

end

What is the proper way to remove redundant code (and DRY it)?

Also, the above approach causes the form to forget any input if the validation fails. Is there a better way to do it so that it remembers any information entered?

Rails 3.07, Ruby 1.9.2

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T08:51:16+00:00Added an answer on May 30, 2026 at 8:51 am

    Put @user = User.find(session[:this_user]) in a before_action like so:

    class SomeController
      before_action :set_session_user, :only => [:new, :create]
      def set_session_user
        @user = User.find(session[:this_user])
      end
    end
    

    And @people= People.order("is_active DESC, first_name, last_name") could be a scope like so:

    class People < ActiveRecord::Base
      scope :sorted_by_active_and_name, -> { order("is_active DESC, first_name, last_name") }
    end
    People.sorted_by_active_and_name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

def new @title = Create a user @user = User.new end <%= form_for(@user) do
I am testing this controller: class SessionsController < ApplicationController def new end def create
I have a tweets_controller #called when user submits twitter form def message unless current_user
I try to make a simple message controller with new/create actions, when I call
This is my setup: user.rb acts_as_authentic do |c| c.logged_in_timeout(1.minutes) end user_session.rb def to_key new_record?
def new before_filter do redirect_to / unless current_admin || current_company flash[:notice] = 'You dont
object ReassignTest extends App { class X(var i : Int) def x = new
def sss(request): handle=open('b.txt','r+') handle.write(I AM NEW FILE) var=handle.read(); return HttpResponse(var) urlpatterns = patterns('', ('^$',sss),
I'm pretty new at python and I was wondering if this: def func(self, foo):
I'm new to Python. I have a method that begins: def foo(self, list): length

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.