Skip to content

Instantly share code, notes, and snippets.

@biagidp
Last active January 2, 2016 10:59
Show Gist options
  • Save biagidp/8293835 to your computer and use it in GitHub Desktop.
Save biagidp/8293835 to your computer and use it in GitHub Desktop.
Spree::User.class_eval do
has_one :profile, dependent: :destroy, autosave: true
before_create :build_profile
def build_profile
if self.has_spree_role?("creative")
self.build_profile
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment