8b4df986bf
Addresses: #402 - migrations to split roles and other attributes from users table - make changes in code to accommodate this change Co-authored-by: Sojan Jose <sojan@pepalo.com> Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
21 lines
954 B
Ruby
21 lines
954 B
Ruby
account = Account.create!(name: 'Acme Inc')
|
|
|
|
user = User.new(name: 'John', email: 'john@acme.inc', password: '123456')
|
|
user.skip_confirmation!
|
|
user.save!
|
|
|
|
AccountUser.create!(
|
|
account_id: account.id,
|
|
user_id: user.id,
|
|
role: :administrator
|
|
)
|
|
|
|
web_widget = Channel::WebWidget.create!(account: account, website_name: 'Acme', website_url: 'https://acme.inc')
|
|
|
|
inbox = Inbox.create!(channel: web_widget, account: account, name: 'Acme Support')
|
|
InboxMember.create!(user: user, inbox: inbox)
|
|
|
|
contact = Contact.create!(name: 'jane', email: 'jane@example.com', phone_number: '0000', account: account)
|
|
contact_inbox = ContactInbox.create!(inbox: inbox, contact: contact, source_id: user.id)
|
|
conversation = Conversation.create!(account: account, inbox: inbox, status: :open, assignee: user, contact: contact, contact_inbox: contact_inbox)
|
|
Message.create!(content: 'Hello', account: account, inbox: inbox, conversation: conversation, message_type: :incoming)
|