1 2 3 4 5 6 7 8 9
class SignupService def register(attrs) User.create(attrs).tap do |user| Identity.create_for user end end end