Skip to content

Instantly share code, notes, and snippets.

@bnymn
Created March 21, 2017 11:48
Show Gist options
  • Save bnymn/f75b87a4487d936514311d227be41d69 to your computer and use it in GitHub Desktop.
Save bnymn/f75b87a4487d936514311d227be41d69 to your computer and use it in GitHub Desktop.
module Spree
User.class_eval do
def active_for_authentication?
super && approved?
end
def inactive_message
if !approved?
:not_approved
else
super
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment