feat: storage + search modules skeleton
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
module.exports = {
|
||||
key: 'algolia',
|
||||
title: 'Algolia',
|
||||
props: ['applicationID', 'adminAPIKey'],
|
||||
activate(opts) {
|
||||
|
||||
},
|
||||
deactivate(opts) {
|
||||
|
||||
},
|
||||
query(opts) {
|
||||
|
||||
},
|
||||
created(opts) {
|
||||
|
||||
},
|
||||
updated(opts) {
|
||||
|
||||
},
|
||||
deleted(opts) {
|
||||
|
||||
},
|
||||
renamed(opts) {
|
||||
|
||||
}
|
||||
}
|
||||
|
26
server/modules/search/azure.js
Normal file
26
server/modules/search/azure.js
Normal file
@@ -0,0 +1,26 @@
|
||||
module.exports = {
|
||||
key: 'azure',
|
||||
title: 'Azure Search',
|
||||
props: ['apiKey', 'applicationID'],
|
||||
activate(opts) {
|
||||
|
||||
},
|
||||
deactivate(opts) {
|
||||
|
||||
},
|
||||
query(opts) {
|
||||
|
||||
},
|
||||
created(opts) {
|
||||
|
||||
},
|
||||
updated(opts) {
|
||||
|
||||
},
|
||||
deleted(opts) {
|
||||
|
||||
},
|
||||
renamed(opts) {
|
||||
|
||||
}
|
||||
}
|
@@ -0,0 +1,26 @@
|
||||
module.exports = {
|
||||
key: 'db',
|
||||
title: 'Database (built-in)',
|
||||
props: [],
|
||||
activate(opts) {
|
||||
|
||||
},
|
||||
deactivate(opts) {
|
||||
|
||||
},
|
||||
query(opts) {
|
||||
|
||||
},
|
||||
created(opts) {
|
||||
|
||||
},
|
||||
updated(opts) {
|
||||
|
||||
},
|
||||
deleted(opts) {
|
||||
|
||||
},
|
||||
renamed(opts) {
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -0,0 +1,26 @@
|
||||
module.exports = {
|
||||
key: 'elasticsearch',
|
||||
title: 'Elasticsearch',
|
||||
props: [],
|
||||
activate(opts) {
|
||||
|
||||
},
|
||||
deactivate(opts) {
|
||||
|
||||
},
|
||||
query(opts) {
|
||||
|
||||
},
|
||||
created(opts) {
|
||||
|
||||
},
|
||||
updated(opts) {
|
||||
|
||||
},
|
||||
deleted(opts) {
|
||||
|
||||
},
|
||||
renamed(opts) {
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -0,0 +1,26 @@
|
||||
module.exports = {
|
||||
key: 'solr',
|
||||
title: 'Solr',
|
||||
props: [],
|
||||
activate(opts) {
|
||||
|
||||
},
|
||||
deactivate(opts) {
|
||||
|
||||
},
|
||||
query(opts) {
|
||||
|
||||
},
|
||||
created(opts) {
|
||||
|
||||
},
|
||||
updated(opts) {
|
||||
|
||||
},
|
||||
deleted(opts) {
|
||||
|
||||
},
|
||||
renamed(opts) {
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user