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

  • SEARCH
  • Home
  • 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 7503363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:11:42+00:00 2026-05-29T21:11:42+00:00

Using Rails 3, I have an account model which has_many addresses. In the address

  • 0

Using Rails 3, I have an account model which has_many addresses. In the address model I have a before_destroy callback method defined which prevents the destroy and adds an error to the address object if the address is associated with a third model. This works fine to prevent the delete of the account or the address.

My issue comes when deleting the account as I would expect the account object’s errors to contain the address error but it does not. Is there any way to include the address error message within the account errors?

  • 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-29T21:11:43+00:00Added an answer on May 29, 2026 at 9:11 pm

    Error messages are generally assigned to the model object where they apply.

    If you really want to, you could grab those errors and stick them in your address model’s errors hash:

    class Account < ActiveRecord::Base
      before_destroy :check_for_destruction
    
      def check_for_destruction
        rejected = addresses.reject{|a| a.can_destroy?} # returns array of addresses that now have errors (they should return false)
        rejected.each do |address|
          address.errors.each do |e|
            errors.add_to_base(e)
          end
        end
      end
    end
    

    Something like that should work, assuming you have defined an Address#can_destroy? method.
    (Disclaimer: code is untested, but should give you a good jumping off point)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a legacy project using Rails 2.3.5 but I can't find with which
I am using Rails 3. I have a Product model and a Group model
Using Rails 3.1.3. I have Accounts and Users. One Account can have many Users.
I'm using Rails 3.0.9. I have this fixtures defined: treatments.yml treatment5: id: 5 code:
I have a rails app with three models: Account, Package and Delivery. I'm using
Using Rails 3.2. I have an individual Shop post, and each shop has reviews.
I have a deployment using: rails 2.3.2 ruby 1.8.7 mysql db and 3 mongrel
I have such problem: I'm using rails, devise gem and jQuery validation plugin. I
I am using Rails 3.1 and want to have a Sass variable (or other
I am using rails 2.3 and have a problem. I have remote form, and

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.