This commit is contained in:
Jan Prochazka 2024-07-09 14:17:27 +02:00
parent 7999148f3c
commit ef77dbf768
2 changed files with 2 additions and 1 deletions

View File

@ -48,6 +48,7 @@ module.exports = {
oauthScope: process.env.OAUTH_SCOPE,
oauthLogout: process.env.OAUTH_LOGOUT,
isLoginForm: !!process.env.AD_URL || (!!logins && !process.env.BASIC_AUTH),
storageDatabase: process.env.STORAGE_DATABASE,
logsFilePath: getLogsFilePath(),
connectionsFilePath: path.join(datadir(), 'connections.jsonl'),
...currentVersion,

View File

@ -10,7 +10,7 @@ import { getConnectionList } from './metadataLoaders';
// };
const doServerPing = value => {
apiCall('server-connections/ping', { conidArray: value, strmid });
apiCall('server-connections/ping', { conidArray: ['__storage', ...value], strmid });
};
const doDatabasePing = value => {