62 lines
1.5 KiB
JavaScript
62 lines
1.5 KiB
JavaScript
window.env = {
|
|
applogicUrl: 'http://0.0.0.0:9002/api/v2/applogic',
|
|
authUrl: 'http://0.0.0.0:9002/api/v2/barong',
|
|
peatioUrl: 'http://0.0.0.0:9002/api/v2/peatio',
|
|
finexUrl: 'http://0.0.0.0:9002/api/v2/finex',
|
|
msAlertDisplayTime: '5000',
|
|
tablePageLimit: 50,
|
|
minutesUntilAutoLogout: '5',
|
|
finex: true,
|
|
captcha: {
|
|
captchaType: 'none',
|
|
siteKey: 'siteKey',
|
|
},
|
|
labelSwitcher: [
|
|
{ name: 'email', label: [{ email: 'verified' }] },
|
|
{ name: 'phone', label: [{ phone: 'verified' }] },
|
|
{ name: 'identity', label: [{ profile: 'partial' }, { id_document: 'verified' }, { liveness: 'verified' }] },
|
|
{ name: 'residence', label: [{ document: 'verified' }] },
|
|
],
|
|
plugins: [
|
|
],
|
|
roleTypes: [
|
|
{
|
|
value: 'Admin',
|
|
key: 'admin',
|
|
},
|
|
{
|
|
value: 'Member',
|
|
key: 'member',
|
|
},
|
|
{
|
|
value: 'Super Admin',
|
|
key: 'superadmin',
|
|
},
|
|
{
|
|
value: 'Accountant',
|
|
key: 'accountant',
|
|
},
|
|
{
|
|
value: 'Compliance',
|
|
key: 'compliance',
|
|
},
|
|
{
|
|
value: 'Technical',
|
|
key: 'technical',
|
|
},
|
|
{
|
|
value: 'Support',
|
|
key: 'support',
|
|
},
|
|
{
|
|
value: 'Trader',
|
|
key: 'trader',
|
|
},
|
|
{
|
|
value: 'Broker',
|
|
key: 'broker',
|
|
},
|
|
],
|
|
withCredentials: false,
|
|
};
|