Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
m4lab_tv1
User Account
Commits
d3a3cd7a
Commit
d3a3cd7a
authored
3 years ago
by
Rosanny Sihombing
Browse files
Options
Download
Email Patches
Plain Diff
small updates
parent
60011553
master
MLAB-677
devel
reset-jul13
reset-merge
testing
6 merge requests
!143
updating yml config
,
!112
merge testing
,
!107
Prepare prod
,
!106
Testing
,
!105
Testing
,
!100
Mlab 87
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
routes/account.ts
+3
-3
routes/account.ts
with
3 additions
and
3 deletions
+3
-3
routes/account.ts
+
3
-
3
View file @
d3a3cd7a
...
...
@@ -41,7 +41,7 @@ export = function (app:any, config:any, passport:any, lang:string) {
// Service Provider private key
decryptionPvk
:
fs
.
readFileSync
(
__dirname
+
'
/cert/key.pem
'
,
'
utf8
'
),
// Service Provider Certificate
private
Cert
:
fs
.
readFileSync
(
__dirname
+
'
/cert/key.pem
'
,
'
utf8
'
),
private
Key
:
fs
.
readFileSync
(
__dirname
+
'
/cert/key.pem
'
,
'
utf8
'
),
// Identity Provider's public key
cert
:
fs
.
readFileSync
(
__dirname
+
'
/cert/cert_idp.pem
'
,
'
utf8
'
),
...
...
@@ -295,12 +295,12 @@ export = function (app:any, config:any, passport:any, lang:string) {
let
newPwd
=
req
.
body
.
inputNewPwd
let
retypePwd
=
req
.
body
.
inputConfirm
dbconn
.
user
.
query
(
'
SELECT password FROM credential WHERE user_id=
'
+
loggedInUser
.
getId
(),
function
(
err
,
rows
,
fields
)
{
dbconn
.
user
.
query
(
'
SELECT password FROM credential WHERE user_id=
'
+
loggedInUser
.
getId
(),
function
(
err
:
any
,
rows
:
any
)
{
if
(
err
)
{
console
.
error
(
err
)
res
.
status
(
500
).
render
(
lang
+
'
/500
'
,
{
error
:
err
})
}
var
userPwd
=
rows
[
0
].
password
let
userPwd
=
rows
[
0
].
password
// check if the password is correct
bcrypt
.
compare
(
currPwd
,
userPwd
,
function
(
err
,
isMatch
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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
Menu
Explore
Projects
Groups
Snippets