Skip to content

Commit

Permalink
chore: remove hidden prop in new settings
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris committed Aug 8, 2024
1 parent a17f84c commit 48ac718
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions apps/meteor/ee/app/livechat-enterprise/server/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ export const createSettings = async (): Promise<void> => {
await this.add('Livechat_Block_Unknown_Contacts', false, {
type: 'boolean',
public: true,
hidden: true,
enableQuery: omnichannelEnabledQuery,
invalidValue: false,
section: 'Contact_identification',
Expand All @@ -181,7 +180,6 @@ export const createSettings = async (): Promise<void> => {
await this.add('Livechat_Block_Unverified_Contacts', false, {
type: 'boolean',
public: true,
hidden: true,
enableQuery: omnichannelEnabledQuery,
invalidValue: false,
section: 'Contact_identification',
Expand All @@ -192,7 +190,6 @@ export const createSettings = async (): Promise<void> => {
await this.add('Livechat_Contact_Verification_App', '', {
type: 'select',
public: true,
hidden: true,
values: [{ key: 'VerifyChat', i18nLabel: 'VerifyChat' }],
enableQuery: omnichannelEnabledQuery,
invalidValue: '',
Expand All @@ -204,7 +201,6 @@ export const createSettings = async (): Promise<void> => {
await this.add('Livechat_Request_Verification_On_First_Contact_Only', false, {
type: 'boolean',
public: true,
hidden: true,
enableQuery: omnichannelEnabledQuery,
invalidValue: false,
section: 'Contact_identification',
Expand Down

0 comments on commit 48ac718

Please sign in to comment.