Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manage/app/services/identity-attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default Service.extend({
{ key: 'phoneNumber', label: 'Phone #', adminOnly: true },
{ key: 'attributes.Industry', label: 'Industry' },
{ key: 'attributes.Job Function', label: 'Job Function' },
{ key: 'attributes.Annual Sales', label: 'Annual Sales' },
{ key: 'attributes.Annual Sales', label: 'Annual Sales', adminOnly: true },
// { key: 'attributes.NAICS Code', label: 'NAICS' },
]);

Expand Down
4 changes: 2 additions & 2 deletions monorepo/services/server/src/mongodb/schema/campaign.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const adsSchema = new Schema({
],
excludeFields: {
type: [String],
default: ['phoneNumber'],
default: ['phoneNumber', 'attributes.Annual Sales'],
},
identityFilters: {
type: [identityFilterSchema],
Expand Down Expand Up @@ -176,7 +176,7 @@ const emailSchema = new Schema({
],
excludeFields: {
type: [String],
default: ['phoneNumber', 'last'],
default: ['phoneNumber', 'last', 'attributes.Annual Sales'],
},
allowedLinkTypes: {
type: [String],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ module.exports = [
{ key: 'phoneNumber', label: 'Phone #', adminOnly: true },
{ key: 'attributes.Industry', label: 'Industry' },
{ key: 'attributes.Job Function', label: 'Job Function' },
{ key: 'attributes.Annual Sales', label: 'Annual Sales' },
{ key: 'attributes.Annual Sales', label: 'Annual Sales', adminOnly: true },
// { key: 'attributes.NAICS Code', label: 'NAICS' },
];