Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Created February 12, 2013 09:00
Show Gist options
  • Save jlebrech/4761083 to your computer and use it in GitHub Desktop.
Save jlebrech/4761083 to your computer and use it in GitHub Desktop.
Would be nice if this worked?
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