change real name to display name in email account add

This commit is contained in:
yasirazgar 2018-10-19 20:23:00 +05:30
parent 8b554e9d66
commit 2f0171b6db

View file

@ -12,7 +12,7 @@ class App.EmailAddress extends App.Model
) )
@configure_attributes = [ @configure_attributes = [
{ name: 'realname', display: 'Real name', tag: 'input', type: 'text', limit: 250, null: false }, { name: 'realname', display: 'Display name', tag: 'input', type: 'text', limit: 250, null: false },
{ name: 'email', display: 'Email', tag: 'input', type: 'email', limit: 250, null: false }, { name: 'email', display: 'Email', tag: 'input', type: 'email', limit: 250, null: false },
{ name: 'channel_id', display: 'Channel', tag: 'select', multiple: false, null: true, relation: 'Channel', nulloption: true, filter: @filterChannel, do_not_log: true }, { name: 'channel_id', display: 'Channel', tag: 'select', multiple: false, null: true, relation: 'Channel', nulloption: true, filter: @filterChannel, do_not_log: true },
{ name: 'note', display: 'Note', tag: 'textarea', note: 'Notes are visible to agents only, never to customers.', limit: 250, null: true }, { name: 'note', display: 'Note', tag: 'textarea', note: 'Notes are visible to agents only, never to customers.', limit: 250, null: true },