alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
include helpful context in doc
author
Wesley Finck
date
1 year ago
(Jul 30, 2025, 1:48 PM -0500)
commit
7341c8eb
7341c8eb9dd211c48f2f85582ac64daaca01d67e
parent
18c3b771
18c3b771ec1edaf017ba23d6a1a8a14389b35efd
+19
1 changed file
Expand all
Collapse all
Unified
Split
docs
event-system-architecture.md
+19
docs/event-system-architecture.md
View file
Reviewed
···
402
402
- Update analytics
403
403
- Remove from search index
404
404
- Clean up recommendations
405
405
+
406
406
+
## useful context
407
407
+
408
408
+
```
409
409
+
docs/event-system-architecture.md
410
410
+
docs/features/GUIDE.md
411
411
+
src/modules/cards/application/useCases/commands/AddUrlToLibraryUseCase.ts
412
412
+
src/modules/cards/domain/Card.ts
413
413
+
src/modules/cards/domain/events/CardAddedToLibraryEvent.ts
414
414
+
src/modules/cards/infrastructure/http/controllers/AddUrlToLibraryController.ts
415
415
+
src/modules/feeds/application/eventHandlers/CardAddedToLibraryEventHandler.ts
416
416
+
src/modules/feeds/application/ports/IFeedService.ts
417
417
+
src/modules/notifications/application/eventHandlers/CardAddedToLibraryEventHandler.ts
418
418
+
src/modules/notifications/application/ports/INotificationService.ts
419
419
+
src/shared/domain/AggregateRoot.ts
420
420
+
src/shared/domain/events/DomainEvents.ts
421
421
+
src/shared/domain/events/IDomainEvent.ts
422
422
+
src/shared/infrastructure/events/EventHandlerRegistry.ts
423
423
+
```