Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
f2d74518
Commit
f2d74518
authored
Nov 09, 2022
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change url path for develop server
parent
d81ce01e
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
41 additions
and
36 deletions
+41
-36
abweb/common/js/common.js
+4
-5
abweb/common/js/constant.js
+7
-6
abweb/common/json/sys/conf.json
+2
-2
abweb/html/dashboard.html
+2
-1
abweb/html/reportList.html
+5
-2
abweb/js/dashboard/dashboard.js
+1
-1
abweb/js/dashboardSetting/dashboard-setting.js
+1
-1
abweb/js/header/header.js
+1
-1
abweb/js/login/login.js
+4
-5
abweb/js/notification-content/notification-content.js
+1
-1
abweb/js/operationList/operationList.js
+3
-3
abweb/js/operationSelect/operation-select.js
+1
-1
abweb/js/pickup/pickup.js
+1
-1
abweb/js/pushMessageDetail/push-message-detail.js
+1
-1
abweb/js/pushMessageList/push-message-list.js
+1
-1
abweb/js/reportList/reportList.js
+3
-2
abweb/js/sendMessage/send-message.js
+1
-1
abweb/js/setting/settings.js
+1
-1
env.sh
+1
-0
No files found.
abweb/common/js/common.js
View file @
f2d74518
...
...
@@ -292,8 +292,7 @@
COMMON
.
checkAuth
=
function
(
async
=
true
)
{
let
params
=
{};
params
.
sid
=
COMMON
.
getSid
;
var
urlPath
=
ClientData
.
userInfo_accountPath
();
const
url
=
CONSTANT
.
URL
.
CMS
.
BASE
+
urlPath
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
AUTH_SESSION
;
const
url
=
COMMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
AUTH_SESSION
;
COMMON
.
cmsAjax
(
url
,
params
,
async
,
null
,
function
()
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
});
...
...
@@ -418,11 +417,11 @@
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_apiLoginUrl
);
}
},
conf_checkApi
Login
Url
:
function
(
data
)
{
conf_checkApiUrl
:
function
(
data
)
{
if
(
arguments
.
length
>
0
)
{
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_checkApi
Login
Url
,
data
);
SessionStorageUtils
.
set
(
CONSTANT
.
KEYS
.
conf_checkApiUrl
,
data
);
}
else
{
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_checkApi
Login
Url
);
return
SessionStorageUtils
.
get
(
CONSTANT
.
KEYS
.
conf_checkApiUrl
);
}
},
conf_apiResourceDlUrl
:
function
(
data
)
{
...
...
abweb/common/js/constant.js
View file @
f2d74518
...
...
@@ -48,21 +48,22 @@ CONSTANT.REPLY_NO = {
CONSTANT
.
URL
=
{
CMS
:
{
// BASE_CMS: 'https://' + location.host + '/checkapi/web/',
BASE
:
'http://localhost:8080/acms/'
,
//BASE: 'https://chatdev2.agentec.jp/acms/',
API
:
{
BASE
:
'/checkapi/web/'
,
ALL_OPERATION_LIST
:
'operationListWeb/getOperationList'
,
AUTH_SESSION
:
'getSession/checkAuthUser'
,
OPERATION_VIEW_LOG
:
'operationViewLog/saveLog'
,
PASSWORD_CHANGE
:
'passwordChangeWeb/'
,
LOGIN
:
'webClientLogin/'
,
LOGOUT
:
'logoutWeb/'
,
DASHBOARD
:
'dashboard/'
,
DASHBOARD_SETTING
:
'dashboardSetting/'
,
SAVE_DASHBOARD_SETTING
:
'saveDashboardSetting/'
,
PUSH_MESSAGE_TEMPLATE
:
'pushMessageTemplate/'
,
OPERATION_SELECT
:
'operationSelect/'
,
},
HTML
:
{
BASE
:
'
/checkapi/web/
html/'
,
BASE
:
'html/'
,
TASK_REPORT_LIST
:
'getTaskReport/'
,
LIST_REPORT_FORM
:
'listReportForm/showReport'
,
REPORT_LIST
:
'reportList'
,
...
...
@@ -115,7 +116,7 @@ CONSTANT.KEYS = {
pushInfo_newMsgNumber
:
'pushInfo_newMsgNumber'
,
conf_apiUrl
:
'conf_apiUrl'
,
conf_apiLoginUrl
:
'conf_apiLoginUrl'
,
conf_checkApi
LoginUrl
:
'conf_checkApiLogin
Url'
,
conf_checkApi
Url
:
'conf_checkApi
Url'
,
conf_apiResourceDlUrl
:
'conf_apiResourceDlUrl'
,
// Session :ABookCheck:Char (Y: Yes, N: No)
serviceOpt_abook_check
:
'abook_check'
,
...
...
abweb/common/json/sys/conf.json
View file @
f2d74518
{
"apiUrl"
:
"http://localhost:8080/acms/{0}/abvapi"
,
"checkApi
LoginUrl"
:
"http://localhost:8080/acms/{0}/checkapi/web
"
,
"checkApi
Url"
:
"http://localhost:8080/acms/{0}/checkapi/web/
"
,
"apiLoginUrl"
:
"http://localhost:8080/acms/nuabvapi"
,
"apiResourceDlUrl"
:
"http://localhost:8080/acms/{0}/dl"
,
"1apiUrl"
:
"https://chatdev2.agentec.jp/acms/{0}/abvapi"
,
"1checkApi
LoginUrl"
:
"https://chatdev2.agentec.jp/acms/{0}/checkapi/web
"
,
"1checkApi
Url"
:
"https://chatdev2.agentec.jp/acms/{0}/checkapi/web/
"
,
"1apiLoginUrl"
:
"https://chatdev2.agentec.jp/acms/nuabvapi"
,
"1apiResourceDlUrl"
:
"https://chatdev2.agentec.jp/acms/{0}/dl"
,
"bookShelfCount"
:
15
,
...
...
abweb/html/dashboard.html
View file @
f2d74518
...
...
@@ -26,7 +26,8 @@
<script
type=
"text/javascript"
src=
"../js/dashboardSetting/dashboard-setting.js"
></script>
<script
type=
"text/javascript"
src=
"../js/template/template.js"
></script>
<script
type=
"text/javascript"
src=
"../js/dashboard/dashboard.js"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@2.1.7/dist/loadingoverlay.min.js"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
DASHBOARD
.
init
();
...
...
abweb/html/reportList.html
View file @
f2d74518
...
...
@@ -22,6 +22,9 @@
<script
type=
"text/javascript"
src=
"../common/js/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/header/header.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/reportList/reportList.js?__UPDATEID__"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@2.1.7/dist/loadingoverlay.min.js"
></script>
</head>
<body
onload=
"RL.init();"
>
...
...
@@ -56,8 +59,8 @@
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/
web
/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/
web
/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/
newdash
/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/
newdash
/common.js?__UPDATEID__"
></script>
</body>
</html>
abweb/js/dashboard/dashboard.js
View file @
f2d74518
...
...
@@ -27,7 +27,7 @@ DASHBOARD.defaultDashboard = {
pushMesage
:
0
,
};
DASHBOARD
.
getDataApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'dashboard/'
;
DASHBOARD
.
getDataApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
urlPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
DASHBOARD
;
/**
* Call api get data
...
...
abweb/js/dashboardSetting/dashboard-setting.js
View file @
f2d74518
...
...
@@ -17,7 +17,7 @@ DashboardSetting.elementItems = {
dashboardHome
:
{
id
:
'settingDashboardHome'
,
name
:
'chk-home'
,
enabled
:
false
},
};
DashboardSetting
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'dashboardSetting/'
;
DashboardSetting
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
DASHBOARD_SETTING
;
/**
* default setting
...
...
abweb/js/header/header.js
View file @
f2d74518
...
...
@@ -20,7 +20,7 @@ HEADER.processLogout = function() {
var
params
=
{
sid
:
ClientData
.
userInfo_sid
()
};
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
LOGOUT
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
LOGOUT
;
COMMON
.
cmsAjax
(
url
,
params
,
false
,
function
(
data
)
{
if
(
data
.
httpStatus
==
CONSTANT
.
HTTP_STATUS
.
OK
)
{
...
...
abweb/js/login/login.js
View file @
f2d74518
...
...
@@ -185,9 +185,8 @@ LOGIN.processLogin = function() {
if
(
ClientData
.
userInfo_sid_local
())
{
params
.
previousSid
=
ClientData
.
userInfo_sid_local
();
}
// Get url to login
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
accountPath
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
LOGIN
;
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
LOGIN
;
COMMON
.
cmsAjax
(
url
,
params
,
true
,
function
(
data
)
{
LOGIN
.
userinfo_sid
=
data
.
sid
;
...
...
@@ -335,7 +334,7 @@ LOGIN.changePasswordProcess = function() {
params
.
language
=
I18N
.
getCurrentLanguage
();
}
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
PASSWORD_CHANGE
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
PASSWORD_CHANGE
;
COMMON
.
cmsAjax
(
url
,
params
,
false
,
function
(
result
)
{
if
(
result
.
httpStatus
==
'200'
)
{
...
...
@@ -548,7 +547,7 @@ LOGIN.ready = function() {
// set api connection
ClientData
.
conf_apiUrl
(
siteUrl
+
"{0}/abvapi"
);
ClientData
.
conf_apiLoginUrl
(
siteUrl
+
"nuabvapi"
);
ClientData
.
conf_checkApi
Login
Url
(
siteUrl
+
"checkapi/web"
);
ClientData
.
conf_checkApiUrl
(
siteUrl
+
"checkapi/web"
);
ClientData
.
conf_apiResourceDlUrl
(
siteUrl
+
"{0}/dl"
);
// set account setting value
ClientData
.
userInfo_accountPath
(
urlPath
);
...
...
@@ -561,7 +560,7 @@ LOGIN.ready = function() {
}
else
{
// conf parameter set
ClientData
.
conf_apiUrl
(
sysSettings
.
apiUrl
);
ClientData
.
conf_checkApi
LoginUrl
(
sysSettings
.
checkApiLogin
Url
);
ClientData
.
conf_checkApi
Url
(
sysSettings
.
checkApi
Url
);
ClientData
.
conf_apiLoginUrl
(
sysSettings
.
apiLoginUrl
);
ClientData
.
conf_apiResourceDlUrl
(
sysSettings
.
apiResourceDlUrl
);
}
...
...
abweb/js/notification-content/notification-content.js
View file @
f2d74518
...
...
@@ -20,7 +20,7 @@ NotificationSelect.getNotificationSelectData = function (callback) {
let
param
=
{
sid
:
COMMON
.
getSid
(),
};
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'pushMessageTemplate/'
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
PUSH_MESSAGE_TEMPLATE
;
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
if
(
callback
)
{
callback
(
json
);
...
...
abweb/js/operationList/operationList.js
View file @
f2d74518
...
...
@@ -64,7 +64,7 @@ OL.getAllDataWeb = function (searchKeyWord, sortIndex, searchStartDate, searchEn
param
.
operationGroupMasterId
=
operationGroupMasterId
;
}
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
ALL_OPERATION_LIST
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
ALL_OPERATION_LIST
;
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
OL
.
saveSearchKeyWord
(
searchKeyWord
,
sortIndex
,
searchStartDate
,
searchEndDate
,
operationGroupMasterId
);
...
...
@@ -527,7 +527,7 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
params
.
operationType
=
operationType
;
params
.
reportType
=
reportType
;
params
.
viewingStartDate
=
COMMON
.
currentTime
();
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
OPERATION_VIEW_LOG
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
OPERATION_VIEW_LOG
;
COMMON
.
cmsAjax
(
url
,
params
,
false
);
};
...
...
@@ -539,7 +539,7 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
* @returns url
*/
OL
.
createUrlOfOperation
=
function
(
enableAddReport
,
reportType
)
{
let
baseUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
;
let
baseUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
HTML
.
BASE
;
if
(
reportType
==
CONSTANT
.
REPORT_TYPE
.
ROUTINE
||
enableAddReport
==
'1'
)
{
return
baseUrl
+
CONSTANT
.
URL
.
CMS
.
HTML
.
TASK_REPORT_LIST
;
}
else
{
...
...
abweb/js/operationSelect/operation-select.js
View file @
f2d74518
...
...
@@ -22,7 +22,7 @@ OperationSelect.getOperationSelectData = function (callback) {
let
param
=
{
sid
:
COMMON
.
getSid
(),
};
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'operationSelect/'
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
OPERATION_SELECT
;
COMMON
.
cmsAjax
(
url
,
param
,
false
,
function
(
json
)
{
if
(
callback
)
{
callback
(
json
);
...
...
abweb/js/pickup/pickup.js
View file @
f2d74518
...
...
@@ -47,7 +47,7 @@ PICKUP.defaultPickupList = {
operationList
:[]
}
PICKUP
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
;
PICKUP
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
;
PICKUP
.
getNewReportListApiUrl
=
PICKUP
.
baseApiUrl
+
'newReport'
;
PICKUP
.
getContinuousWorkListApiUrl
=
PICKUP
.
baseApiUrl
+
'workingFlow'
;
PICKUP
.
getReportWithWarningsListApiUrl
=
PICKUP
.
baseApiUrl
+
'warningWithReport'
;
...
...
abweb/js/pushMessageDetail/push-message-detail.js
View file @
f2d74518
var
PushMessageDetail
=
{};
PushMessageDetail
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'pushMessageDetail/'
;
PushMessageDetail
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
'pushMessageDetail/'
;
PushMessageDetail
.
dummyMessageDetailJson
=
{
pushMessageId
:
1
,
...
...
abweb/js/pushMessageList/push-message-list.js
View file @
f2d74518
...
...
@@ -3,7 +3,7 @@
* @since cms:1.4.3.2&1.4.3.3 web:1.0
*/
var
PushMessageList
=
{};
PushMessageList
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'pushMessageList/'
;
PushMessageList
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
'pushMessageList/'
;
/**
* Init when html onload
...
...
abweb/js/reportList/reportList.js
View file @
f2d74518
...
...
@@ -3,7 +3,8 @@
var
RL
=
{};
RL
.
init
=
function
()
{
COMMON
.
checkAuth
(
false
);
console
.
log
(
"kdh check ok"
);
// COMMON.checkAuth(true);
RL
.
loadCommon
();
RL
.
initTaskReportList
();
...
...
@@ -25,7 +26,7 @@ RL.initTaskReportList = function() {
params
.
sid
=
COMMON
.
getSid
();
params
.
operationId
=
sessionStorage
.
OL_operationId
;
params
.
returnUrl
=
CONSTANT
.
URL
.
WEB
.
BASE
+
CONSTANT
.
URL
.
WEB
.
OPERATION_LIST
;
let
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
(
)
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
TASK_REPORT_LIST
;
let
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
TASK_REPORT_LIST
;
// COMMON.postCommunication(url, params);
$
(
"#task-list"
).
load
(
url
,
params
);
// COMMON.cmsAjax(url, params, false, function(result) {
...
...
abweb/js/sendMessage/send-message.js
View file @
f2d74518
...
...
@@ -5,7 +5,7 @@
*/
var
SendMessage
=
{};
SendMessage
.
baseApiUrl
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
'sendPushMessage/'
;
SendMessage
.
baseApiUrl
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
'sendPushMessage/'
;
/**
* Get input content
...
...
abweb/js/setting/settings.js
View file @
f2d74518
...
...
@@ -77,7 +77,7 @@ SETTINGS.dspPwdUpd1_Click = function(e) {
language
:
I18N
.
getCurrentLanguage
(),
appId
:
4
};
const
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
+
CONSTANT
.
URL
.
CMS
.
API
.
PASSWORD_CHANGE
;
const
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
)
+
CONSTANT
.
URL
.
CMS
.
API
.
PASSWORD_CHANGE
;
COMMON
.
cmsAjax
(
url
,
params
,
false
,
SETTINGS
.
avwCmsApi_passwordChange_success
,
SETTINGS
.
avwCmsApi_passwordChange_fail
);
...
...
env.sh
View file @
f2d74518
...
...
@@ -25,6 +25,7 @@ modify_api()
"apiUrl" : "
$URI_PREFIX
/{0}/abvapi",
"apiLoginUrl" : "
$URI_PREFIX
/nuabvapi",
"apiResourceDlUrl" : "
$URI_PREFIX
/{0}/dl",
"checkApiUrl" : "
$URI_PREFIX
/{0}/checkapi/web/",
"bookShelfCount" : 15,
"bookListCount" : 15,
"screenlockTimeDefault" : 30,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment