mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
20 lines
598 B
Ruby
20 lines
598 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ManagerInvitations
|
|
extend ActiveSupport::Concern
|
|
|
|
def create_new_manager(email, enterprise)
|
|
password = Devise.friendly_token
|
|
new_user = Spree::User.create(email: email, unconfirmed_email: email, password: password)
|
|
new_user.reset_password_token = Devise.friendly_token
|
|
# Same time as used in Devise's lib/devise/models/recoverable.rb.
|
|
new_user.reset_password_sent_at = Time.now.utc
|
|
new_user.save!
|
|
|
|
enterprise.users << new_user
|
|
EnterpriseMailer.manager_invitation(@enterprise, new_user).deliver_later
|
|
|
|
new_user
|
|
end
|
|
end
|