Files
dbgate/packages/api/src/controllers/storage.js
2025-08-19 12:26:31 +02:00

41 lines
628 B
JavaScript

module.exports = {
connections_meta: true,
async connections(req) {
return null;
},
async getExportedDatabase() {
return {};
},
getConnection_meta: true,
async getConnection({ conid }) {
return null;
},
getConnectionsForLoginPage_meta: true,
async getConnectionsForLoginPage() {
return null;
},
getStorageConnectionError() {
return null;
},
readConfig_meta: true,
async readConfig({ group }) {
return {};
},
sendAuditLog_meta: true,
async sendAuditLog({}) {
return null;
},
startRefreshLicense() {},
async getUsedEngines() {
return null;
},
};