We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3f6a8a commit a3f2a9eCopy full SHA for a3f2a9e
1 file changed
soulfield-v2-mvp/src/app.js
@@ -88,3 +88,18 @@ app.use(auditSelftest.router);
88
89
module.exports = app;
90
91
+
92
+// --- CI/contract fallback shims (only used if no earlier handler matched) ---
93
+app.post('/aurea/consult-sentences', lensEnforcer, (req, res) => {
94
+ res.json({
95
+ sentences: [{ text: 'CI shim (Aurea)', tags: [{ type: 'fact' }] }],
96
+ meta: {}
97
+ });
98
+});
99
100
+app.post('/council/consult-sentences', lensEnforcer, (req, res) => {
101
102
+ sentences: [{ text: 'CI shim (Council)', tags: [{ type: 'fact' }] }],
103
104
105
0 commit comments