Created
February 12, 2013 09:00
-
-
Save jlebrech/4761083 to your computer and use it in GitHub Desktop.
Would be nice if this worked?
This file contains 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
alias :save :user_confirm | |
alias :delete :user_confirm | |
def user_confirm(current_user) | |
unless self.user == current_user | |
errors.add(:user, 'Must be you') | |
else | |
super | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment