Feature/update confirmation email information (#145)
* Add `invited_by` foreign key to User Allows for a User to be tied to the user who invited them * Include `current_user` in new agent initialization parameters * Add `shoulda-matchers` for testing associations * Add Inviter information and associated account to welcome email * Only show inviter info if applicable * Update conversation spec for FFaker compatibility
This commit is contained in:
@@ -60,8 +60,8 @@ RSpec.describe Conversation, type: :model do
|
||||
# create_activity
|
||||
expect(conversation.messages.pluck(:content)).to eq(
|
||||
[
|
||||
'Conversation was marked resolved by John Smith',
|
||||
'Assigned to John Smith by John Smith'
|
||||
"Conversation was marked resolved by #{old_assignee.name}",
|
||||
"Assigned to #{new_assignee.name} by #{old_assignee.name}"
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user