Skip to content

Commit

Permalink
chore: making the properties public
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustrb committed Jul 25, 2024
1 parent 91a882f commit 9d418a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/meteor/ee/app/livechat-enterprise/server/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export const createSettings = async (): Promise<void> => {

await this.add('Livechat_Block_Unknown_Contacts', false, {
type: 'boolean',
public: false,
public: true,
hidden: true,
enableQuery: omnichannelEnabledQuery,
invalidValue: false,
Expand All @@ -180,7 +180,7 @@ export const createSettings = async (): Promise<void> => {

await this.add('Livechat_Block_Unverified_Contacts', false, {
type: 'boolean',
public: false,
public: true,
hidden: true,
enableQuery: omnichannelEnabledQuery,
invalidValue: false,
Expand All @@ -191,7 +191,7 @@ export const createSettings = async (): Promise<void> => {

await this.add('Livechat_Contact_Verification_App', '', {
type: 'select',
public: false,
public: true,
hidden: true,
values: [{ key: 'VerifyChat', i18nLabel: 'VerifyChat' }],
enableQuery: omnichannelEnabledQuery,
Expand All @@ -203,7 +203,7 @@ export const createSettings = async (): Promise<void> => {

await this.add('Livechat_Request_Verification_On_First_Contact_Only', false, {
type: 'boolean',
public: false,
public: true,
hidden: true,
enableQuery: omnichannelEnabledQuery,
invalidValue: false,
Expand Down

0 comments on commit 9d418a2

Please sign in to comment.