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 3431726
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T07:21:43+00:00 2026-05-18T07:21:43+00:00

I need to validate a model only for a certain action (:create). I know

  • 0

I need to validate a model only for a certain action (:create). I know this is not a good tactic, but i just need to do this in my case.

I tried using something like :

validate :check_gold, :if => :create

or

validate :check_gold, :on => :create

But i get errors. The problem is that i cannot have my custom check_gold validation execute on edit, but only on create (since checking gold has to be done, only when alliance is created, not edited).

Thanx for reading 🙂


I’m appending some actual code :

  attr_accessor :required_gold, :has_alliance
  validate :check_gold
  validate :check_has_alliance

This is the Alliance model. :required_gold and :has_alliance are both set in the controller(they are virtual attributes, because i need info from the controller). Now, the actual validators are:

  def check_gold
    self.errors.add(:you_need, "100 gold to create your alliance!") if required_gold < GOLD_NEEDED_TO_CREATE_ALLIANCE
  end

  def check_has_alliance
    self.errors.add(:you_already, "have an alliance and you cannot create another one !") if has_alliance == true
  end

This works great for create, but i want to restrict it to create alone and not edit or the other actions of the scaffold.

  • 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-18T07:21:44+00:00Added an answer on May 18, 2026 at 7:21 am

    All ActiveRecord validators have a :on option.

    validates_numericality_of :value, :on => :create 
    

    Use the validate_on_create callback instead of validate:

    validate_on_create :check_gold
    validate_on_create :check_has_alliance
    

    Edit:

    If you use validates_each you can use the standard options available for a validator declaration.

    validates_each :required_gold, :has_alliance, :on => :create do |r, attr, value|
      r.check_gold if attr == :required_gold
      r.check_has_alliance if attr == :has_alliance
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For example, if I have a user model and I need to validate login
I need to validate a date/time field on a webpage but want it to
I need to validate an XML string (and not a file) against a DTD
I need to validate this simple pick list: <select name=<%= key %>> <option value=ETC
I need to validate a certain property to one of my classes. When I
I have this page which has several TextAreas (asp.net mvc). I need to validate
I need to validate the email address of my users. Unfortunately, making a validator
I need to validate the user input of a JSpinner , and if invalid,
I need to validate an XML agaist a schema. I tried XML::SAX::ParserFactory; XML::Validator::Schema and
I don't need to validate that the IP address is reachable or anything like

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.