1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
unleash.unleash/lib/extractUser.js
Ivar Conradi Østhus 2a4a76aaf5 When the user enters his username in to the field
a username cookie is updated and will be available
in all subsequent requests.

THIS IS NOT AUTHENTICATION! it is not safe and is
only implemented as a first edition. It does how ever
solve the issue where we are not able to see who
canged what.
2015-02-05 13:39:00 +01:00

5 lines
112 B
JavaScript

function extractUsername(req) {
return req.cookies.username || "unknown";
}
module.exports = extractUsername;