Conversation
…ion into a dedicated module.
kigiri
reviewed
Feb 11, 2026
api/routes.ts
Outdated
| STR('Target column names or *'), | ||
| 'List of target columns', | ||
| ), | ||
| triggerEvent: LIST(['BEFORE', 'AFTER'], 'Trigger event: BEFORE or AFTER'), |
kigiri
reviewed
Feb 11, 2026
api/routes.ts
Outdated
| output: ARR(SQLToolDef, 'List of SQL tools'), | ||
| description: 'Get SQL tools for a project', | ||
| }), | ||
| 'POST/api/project/tool': route({ |
… remove the old Tools page.
kigiri
reviewed
Feb 23, 2026
| } | ||
| } | ||
| } | ||
| } |
Member
There was a problem hiding this comment.
for await (const event of watcher!) {
if (!['modify', 'create', 'remove'].includes(event.kind)) continue
for (const path of event.paths) {
if (!path.endsWith('.js')) continue
const parts = path.split('/')
const fileName = parts.pop()
const slug = parts.pop()
if (!fileName || !slug) continue
await reloadProjectFunctions(slug)
}
}…se functions for password hashing and tactic content compression.
f9ce61c to
1397d3a
Compare
kigiri
reviewed
Feb 25, 2026
| } | ||
| } | ||
| return transformed | ||
| } |
Member
There was a problem hiding this comment.
async function transformRowRead(row) {
if (!row || typeof row !== 'object') return row
const transformed = {}
for (const [key, value] of Object.entries(row)) {
if (value instanceof Uint8Array) {
if (key === 'tacticContent') {
try {
transformed[key] = decoder.decode(await decompress(value))
} catch (e) {
console.error(`Failed to decompress tacticContent:`, e)
transformed[key] = encodeBase64Url(value)
}
} else {
transformed[key] = encodeBase64Url(value)
}
} else {
transformed[key] = value
}
}
return transformed
}…hema definitions, and associated UI components.
d45643c to
f7bd84a
Compare
…d move sidebar items to shared utility.
3845399 to
696dde5
Compare
kigiri
approved these changes
Feb 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat: implement SQL tool management page and refactor sidebar navigation into a dedicated module.