Chore: Add display name to the user (#1067)

* Chore: Adding browser info to web widget triggered event

fixes: #970

* Chore: Rename nickname to display name

references: #972

* Chore: Change nickname in code

* chore: fix errors

* Chore: update nginx config

fixes: #1057

* Chore: Fix specs
This commit is contained in:
Sojan Jose
2020-07-20 18:28:14 +05:30
committed by GitHub
parent 29838f9424
commit d800b55ac6
13 changed files with 34 additions and 23 deletions

View File

@@ -12,8 +12,8 @@ FactoryBot.define do
provider { 'email' }
uid { SecureRandom.uuid }
name { Faker::Name.name }
nickname { Faker::Name.first_name }
email { nickname + "@#{SecureRandom.uuid}.com" }
display_name { Faker::Name.first_name }
email { display_name + "@#{SecureRandom.uuid}.com" }
password { 'password' }
after(:build) do |user, evaluator|