Skip to content

Instantly share code, notes, and snippets.

@PerezIgnacio
Created February 3, 2020 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PerezIgnacio/7a0e5a003ac1ac02037c68f1c908e27d to your computer and use it in GitHub Desktop.
Save PerezIgnacio/7a0e5a003ac1ac02037c68f1c908e27d to your computer and use it in GitHub Desktop.
UserAddedToCrm decorator example
class UserAddedToCrm
def initialize(user)
@user = user
end
def save
@user.save && send_user_to_crm
end
private
def send_user_to_crm
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment