feat: wire global runtime injection and playground

This commit is contained in:
stanig2106
2025-11-14 06:15:33 +01:00
parent 534bc39197
commit f12bc0ce85
18 changed files with 516 additions and 54 deletions

View File

@@ -6,7 +6,7 @@ export function __can__(path: string[]) {
'contract.create',
])
// return allowed.has(key)
console.log('Checking permission:', key)
return false
const granted = allowed.has(key)
console.log('Checking permission:', key, '->', granted)
return granted
}