Created
January 14, 2014 14:37
-
-
Save lilithlavender/8419246 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class FranchiseeRequest < ActiveRecord:: Base | |
| attr_accessor :skip_region_validation | |
| attr_accessor :skip_region_validation, as: :import | |
| validate :expanding_into_region, unless: :skip_region_validation | |
| def expanding_into_region | |
| raise error if franchise is not expanding into current region | |
| end | |
| def skip_region_validation | |
| self.franchisee.region_code == "n/a" | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment