mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 21:16:00 +00:00
21 lines
345 B
JavaScript
21 lines
345 B
JavaScript
module.exports = {
|
|
connections_meta: true,
|
|
async connections(req) {
|
|
return null;
|
|
},
|
|
|
|
getConnection_meta: true,
|
|
async getConnection({ conid }) {
|
|
return null;
|
|
},
|
|
|
|
async loadSuperadminPermissions() {
|
|
return [];
|
|
},
|
|
|
|
getConnectionsForLoginPage_meta: true,
|
|
async getConnectionsForLoginPage() {
|
|
return null;
|
|
},
|
|
};
|