mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-28 13:57:43 +02:00
feat(auth): add Gilden (guilds) shared Mana pool system
Replace removed B2B org credit system with consumer-friendly shared Mana pools. Members spend directly from a guild pool managed by the Gildenmeister (owner). Supports funding from personal balance, per-member spending limits, and credit source routing. New endpoints: /gilden/* (guild CRUD) and /credits/guild/* (pool ops). POST /credits/use now accepts optional creditSource for guild routing. Delete broken b2b-journey E2E tests that tested phantom endpoints. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
63376c1313
commit
17df7b32f5
19 changed files with 1900 additions and 969 deletions
|
|
@ -11,6 +11,7 @@ import { AuthModule } from './auth/auth.module';
|
|||
import { CreditsModule } from './credits/credits.module';
|
||||
import { FeedbackModule } from './feedback/feedback.module';
|
||||
import { GiftsModule } from './gifts/gifts.module';
|
||||
import { GuildsModule } from './guilds/guilds.module';
|
||||
import { HealthModule } from './health/health.module';
|
||||
import { SettingsModule } from './settings/settings.module';
|
||||
import { StorageModule } from './storage/storage.module';
|
||||
|
|
@ -57,6 +58,7 @@ import { SecurityModule } from './security';
|
|||
CreditsModule,
|
||||
FeedbackModule,
|
||||
GiftsModule,
|
||||
GuildsModule,
|
||||
HealthModule,
|
||||
SettingsModule,
|
||||
StorageModule,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue