mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-09 09:02:48 +01:00
Compare commits
4 Commits
enable-que
...
renovate/a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4c5bd99490 | ||
|
|
47074b3c93 | ||
|
|
125c8e5821 | ||
|
|
c88ce519ee |
@@ -24,8 +24,8 @@
|
||||
"newbieChatMessageDelay": 120000,
|
||||
"notificationSendDelay": 60,
|
||||
"newbieReputationThreshold": 3,
|
||||
"postQueue": 1,
|
||||
"postQueueReputationThreshold": 1,
|
||||
"postQueue": 0,
|
||||
"postQueueReputationThreshold": 0,
|
||||
"groupsExemptFromPostQueue": ["administrators", "Global Moderators"],
|
||||
"groupsExemptFromNewUserRestrictions": ["administrators", "Global Moderators"],
|
||||
"groupsExemptFromMaintenanceMode": ["administrators", "Global Moderators"],
|
||||
|
||||
@@ -107,10 +107,10 @@
|
||||
"nodebb-plugin-spam-be-gone": "2.3.2",
|
||||
"nodebb-plugin-web-push": "0.7.6",
|
||||
"nodebb-rewards-essentials": "1.0.2",
|
||||
"nodebb-theme-harmony": "2.1.30",
|
||||
"nodebb-theme-harmony": "2.1.31",
|
||||
"nodebb-theme-lavender": "7.1.19",
|
||||
"nodebb-theme-peace": "2.2.49",
|
||||
"nodebb-theme-persona": "14.1.22",
|
||||
"nodebb-theme-persona": "14.1.23",
|
||||
"nodebb-widget-essentials": "7.0.41",
|
||||
"nodemailer": "7.0.12",
|
||||
"nprogress": "0.2.0",
|
||||
@@ -160,9 +160,9 @@
|
||||
"zxcvbn": "4.4.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@apidevtools/swagger-parser": "10.1.0",
|
||||
"@commitlint/cli": "20.3.0",
|
||||
"@commitlint/config-angular": "20.3.0",
|
||||
"@apidevtools/swagger-parser": "12.1.0",
|
||||
"@commitlint/cli": "20.3.1",
|
||||
"@commitlint/config-angular": "20.3.1",
|
||||
"coveralls": "3.1.1",
|
||||
"@eslint/js": "9.39.2",
|
||||
"@stylistic/eslint-plugin": "5.6.1",
|
||||
|
||||
@@ -639,7 +639,7 @@ describe('Controllers', () => {
|
||||
});
|
||||
|
||||
assert.strictEqual(response.statusCode, 302);
|
||||
assert.strictEqual(response.headers['set-cookie'], `express.sid=; Path=${nconf.get('relative_path') || '/'}; Expires=Thu, 01 Jan 1970 00:00:00 GMT${nconf.get('secure') ? '; Secure' : ''}; SameSite=Lax`);
|
||||
assert.strictEqual(response.headers['set-cookie'], `express.sid=; Path=${nconf.get('relative_path') || '/'}; Expires=Thu, 01 Jan 1970 00:00:00 GMT; SameSite=Lax`);
|
||||
assert.strictEqual(response.headers.location, `${nconf.get('relative_path')}/`);
|
||||
});
|
||||
|
||||
|
||||
@@ -194,7 +194,6 @@ async function setupMockDefaults() {
|
||||
meta.config.newbiePostDelay = 0;
|
||||
meta.config.autoDetectLang = 0;
|
||||
meta.config.activitypubProbeTimeout = 30000;
|
||||
meta.config.postQueue = 0;
|
||||
|
||||
require('../../src/groups').cache.reset();
|
||||
require('../../src/posts/cache').getOrCreate().reset();
|
||||
|
||||
Reference in New Issue
Block a user