mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 06:46:00 +00:00
36 lines
562 B
JavaScript
36 lines
562 B
JavaScript
module.exports = {
|
|
connections_meta: true,
|
|
async connections(req) {
|
|
return null;
|
|
},
|
|
|
|
async connectionsToExport() {
|
|
return null;
|
|
},
|
|
|
|
getConnection_meta: true,
|
|
async getConnection({ conid }) {
|
|
return null;
|
|
},
|
|
|
|
async loadSuperadminPermissions() {
|
|
return [];
|
|
},
|
|
|
|
getConnectionsForLoginPage_meta: true,
|
|
async getConnectionsForLoginPage() {
|
|
return null;
|
|
},
|
|
|
|
getStorageConnectionError() {
|
|
return null;
|
|
},
|
|
|
|
readConfig_meta: true,
|
|
async readConfig({ group }) {
|
|
return {};
|
|
},
|
|
|
|
startRefreshLicense() {},
|
|
};
|