This website requires JavaScript.
Explore
Help
Sign In
186526
/
unpkg
Watch
1
Star
0
Fork
You've already forked unpkg
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
311a1ffa7e
unpkg
/
modules
/
actions
/
showAuth.js
6 lines
92 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Add auth and blacklist APIs
2017-11-11 20:18:13 +00:00
function
showAuth
(
req
,
res
)
{
Prettify everything
2018-02-18 02:00:56 +00:00
res
.
send
(
{
auth
:
req
.
user
}
)
;
Add auth and blacklist APIs
2017-11-11 20:18:13 +00:00
}
Prettify everything
2018-02-18 02:00:56 +00:00
module
.
exports
=
showAuth
;