We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad9e32 commit 8882f1fCopy full SHA for 8882f1f
functions/src/index.ts
@@ -34,6 +34,11 @@ exports.indexTimelineToElastic = functions.firestore
34
35
});
36
37
+exports.updateElastic = functions.remoteConfig.onUpdate(versionMetadata => {
38
+ const currentVersion = versionMetadata.versionNumber;
39
+ console.log(`updateElastic: ${currentVersion}`);
40
+});
41
+
42
const app = express();
43
app.use(cors({ origin: true }));
44
app.post('/timeline/_search', (req, res) => {
0 commit comments