Compare commits
No commits in common. "6feab9ef6853b73184dffbe69657ff5c1dcf4558" and "ff55932d44fca7a14cb660b429e36d28423b47b2" have entirely different histories.
6feab9ef68
...
ff55932d44
@ -86,7 +86,7 @@ models.authCode = new Schema({
|
|||||||
applicationId: Schema.Types.ObjectId, // reference to application
|
applicationId: Schema.Types.ObjectId, // reference to application
|
||||||
userId: Schema.Types.ObjectId, // reference to user
|
userId: Schema.Types.ObjectId, // reference to user
|
||||||
token: String, // generated token, only usable in combination with userId and applicationId
|
token: String, // generated token, only usable in combination with userId and applicationId
|
||||||
timestamp: { type: Date, default: Date.now, index: {unique: true, expires: '5m'} }
|
timestamp: { type: Date, default: Date.now }
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = (con) => {
|
module.exports = (con) => {
|
||||||
|
@ -33,8 +33,7 @@ methods.connect = async () => {
|
|||||||
mongoose.connect(cfg.mongoose.uri, {
|
mongoose.connect(cfg.mongoose.uri, {
|
||||||
useNewUrlParser: true,
|
useNewUrlParser: true,
|
||||||
useUnifiedTopology: true,
|
useUnifiedTopology: true,
|
||||||
useFindAndModify: false,
|
useFindAndModify: false
|
||||||
useCreateIndex: true
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ methods.start = () => {
|
|||||||
// Sessions
|
// Sessions
|
||||||
session_options = {
|
session_options = {
|
||||||
secret: cfg.web.sessionKey,
|
secret: cfg.web.sessionKey,
|
||||||
resave: true,
|
resave: false,
|
||||||
saveUninitialized: false,
|
saveUninitialized: false,
|
||||||
cookie: {
|
cookie: {
|
||||||
maxAge: cfg.web.cookieMaxAge
|
maxAge: cfg.web.cookieMaxAge
|
||||||
|
Loading…
x
Reference in New Issue
Block a user