Compare commits

..

No commits in common. "34613a92c513db8755fa02ff06f0990eda7625d0" and "6bf7fc56551840b780c8d5a16536c19f7d307f63" have entirely different histories.

4 changed files with 3 additions and 6 deletions

View File

@ -12,7 +12,6 @@ module.exports = {
password: 'password',
database: 'traxxx',
},
timeout: 5000,
},
web: {
host: '0.0.0.0',

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.228.3",
"version": "1.228.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.228.3",
"version": "1.228.2",
"license": "ISC",
"dependencies": {
"@casl/ability": "^5.2.2",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.228.3",
"version": "1.228.2",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -1,7 +1,6 @@
'use strict';
/* eslint-disable arrow-body-style */
const config = require('config');
const { postgraphile } = require('postgraphile');
const PgConnectionFilterPlugin = require('postgraphile-plugin-connection-filter');
@ -13,7 +12,6 @@ const { ActorPlugins, SitePlugins, ReleasePlugins, MediaPlugins } = require('./p
async function pgSettings(req) {
return {
'user.id': req.session.user?.id || null, // undefined is passed as an empty string, avoid
statement_timeout: config.database.timeout,
};
}