next-ucap-messenger/projects/ucap-webmessenger-app/src/environments/environment.daesang.prod.ts

171 lines
3.3 KiB
TypeScript
Raw Normal View History

2019-12-13 04:45:08 +00:00
import {
Environment,
commonApiUrls,
commonApiacceptableFileExtensions,
publicApiUrls,
externalApiUrls,
piUrls,
protocolUrls,
messageApiUrls,
promptUrls
2019-12-13 04:45:08 +00:00
} from './environment.type';
2019-12-24 07:16:13 +00:00
import { DeviceType, NotificationMethod } from '@ucap-webmessenger/core';
2019-12-13 04:45:08 +00:00
export const environment: Environment = {
production: true,
2019-12-13 04:45:08 +00:00
title: `DS Talk`,
companyConfig: {
companyGroupCode: 'LG',
fixedCompanyCode: 'GUC100'
2019-12-13 04:45:08 +00:00
},
productConfig: {
productId: 'PRO_000482',
productName: 'EZMessenger',
authentication: {
2019-12-15 13:49:35 +00:00
usePrivateInformationAgree: false,
rememberMe: {
use: false
},
autoLogin: {
use: true
}
2019-12-13 04:45:08 +00:00
},
updateCheckConfig: {
deviceType: DeviceType.Renderer,
intervalHour: 1
2019-12-15 19:49:27 +00:00
},
defaultSettings: {
general: {
appTheme: 'theme-default',
autoLogin: false,
2019-12-17 08:27:08 +00:00
autoLaunch: true,
2019-12-15 19:49:27 +00:00
continueRunWhenClose: true,
locale: 'ko',
hrInfoLocale: 'ko',
2019-12-18 08:11:58 +00:00
startupHideWindow: false,
2019-12-20 07:30:22 +00:00
timezone: 'Asia/Seoul'
2019-12-15 19:49:27 +00:00
},
notification: {
2019-12-20 10:53:08 +00:00
use: true,
2019-12-24 07:16:13 +00:00
method: NotificationMethod.SoundAndAlert,
2019-12-20 10:53:08 +00:00
alertExposureTime: 5,
receiveForMobile: false,
receiveForMessage: false
2019-12-24 02:41:50 +00:00
},
chat: {
fontFamily: 'Malgun Gothic',
fontSize: 12,
downloadPath: undefined
2019-12-24 07:16:13 +00:00
},
presence: {
absenceTime: 10
2019-12-15 19:49:27 +00:00
}
},
CommonSetting: {
defaultFileAllowSize: 100,
editableProfileImage: false,
useMyDeptGroup: true,
myDeptGroupSeq: -5,
fixedGroupSeqs: [-5],
useTimerRoom: false,
timerRoomDefaultInterval: 24 * 60 * 60,
maxChatRoomUser: 300,
masstextLength: 800,
eventRequestInitCount: 30,
eventRequestDefaultCount: 50,
readHereShowMinimumEventCount: 10,
readHereShowMaximumEventCount: 100,
readHereEventRequestCount: 10
2019-12-13 04:45:08 +00:00
}
},
2019-12-15 13:49:35 +00:00
customConfig: {
pw: {
userKey: 'DaesangSSOProject',
isBase64: 'N'
},
appKey: '!@#$DAESANG%^&*'
2019-12-15 13:49:35 +00:00
},
2019-12-13 04:45:08 +00:00
commonApiModuleConfig: {
hostConfig: {
protocol: 'https',
2019-12-13 04:45:08 +00:00
domain: 'messenger.daesang.com',
port: 443
2019-12-13 04:45:08 +00:00
},
urls: commonApiUrls,
acceptableFileExtensions: commonApiacceptableFileExtensions
},
publicApiModuleConfig: {
hostConfig: {
protocol: 'https',
2019-12-13 04:45:08 +00:00
domain: 'messenger.daesang.com',
port: 443
2019-12-13 04:45:08 +00:00
},
urls: publicApiUrls
},
externalApiModuleConfig: {
hostConfig: {
protocol: 'https',
2019-12-13 04:45:08 +00:00
domain: 'messenger.daesang.com',
port: 443
2019-12-13 04:45:08 +00:00
},
urls: externalApiUrls
},
messageApiModuleConfig: {
hostConfig: {
protocol: 'https',
2019-12-13 04:45:08 +00:00
domain: 'messenger.daesang.com',
port: 9097
2019-12-13 04:45:08 +00:00
},
urls: messageApiUrls
},
promptApiModuleConfig: {
hostConfig: {
protocol: 'https',
domain: 'messenger.daesang.com',
port: 9097
},
urls: promptUrls
},
2019-12-13 04:45:08 +00:00
piModuleConfig: {
hostConfig: {
protocol: 'https',
2019-12-13 04:45:08 +00:00
domain: 'messenger.daesang.com',
port: 9097
},
urls: piUrls
},
protocolModuleConfig: {
hostConfig: {
protocol: 'ws',
domain: 'messenger.daesang.com',
port: 8080
},
urls: protocolUrls,
reconnect: {
delay: 1000
},
requestId: {
min: 1,
max: 59999
}
},
nativeModuleConfig: {}
};