Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hyunjong Lee
/
test
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Akhidjon
2019-06-07 00:12:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
77068620f30b8de1f6fd7b597d83c0bbdd62956b
77068620
1 parent
e865abba
commit
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
4 deletions
CHANGELOG
app.js
error.txt
routes/setting.js
CHANGELOG
deleted
100644 → 0
View file @
e865abb
dd
\ No newline at end of file
app.js
View file @
7706862
...
...
@@ -77,7 +77,7 @@ app.use(express.static(path.join(__dirname, 'public')));
connection
=
mysql
.
createConnection
({
host
:
'localhost'
,
user
:
'root'
,
password
:
'
asd123
'
,
password
:
''
,
port
:
3306
,
database
:
'ytmt'
});
...
...
error.txt
deleted
100644 → 0
View file @
e865abb
File mode changed
routes/setting.js
View file @
7706862
...
...
@@ -7,7 +7,7 @@ function addMyToons(id,index,cb){
throw
err
;
console
.
log
(
"내 웹툰 추가 중 에러!"
)
}
else
{
alert
(
"추가되었습니다."
)
//
alert("추가되었습니다.")
cb
();
}
});
...
...
@@ -28,7 +28,7 @@ router.post('/toggle_toon',function(req,res,next) {
console
.
log
(
"내 웹툰 제거중 에러!"
);
throw
err
;
}
else
{
alert
(
"제거되었습니다."
)
//
alert("제거되었습니다.")
res
.
redirect
(
'/setting'
);
}
});
...
...
Please
register
or
login
to post a comment