feat: auth & admin

This commit is contained in:
2026-06-03 10:41:53 +03:00
parent 612d0f0125
commit 7dc59fb3c4
120 changed files with 4683 additions and 2159 deletions
@@ -14,7 +14,7 @@ This is a specialization of [Defer Await Until Needed](./async-defer-await.md) f
**Incorrect:**
```typescript
const someFlag = await getFlag()
const someFlag = await getFlag();
if (someFlag && someCondition) {
// ...
@@ -25,7 +25,7 @@ if (someFlag && someCondition) {
```typescript
if (someCondition) {
const someFlag = await getFlag()
const someFlag = await getFlag();
if (someFlag) {
// ...
}