Skip to content

Commit bcc2262

Browse files
Remove tutorial image place holders
1 parent b8cc8ba commit bcc2262

5 files changed

Lines changed: 0 additions & 33 deletions

docs/01-foundation.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,6 @@ Our application consists of three main components:
110110
10. Return protected data
111111
```
112112

113-
![CAT Pattern Architecture](images/cat-pattern-architecture.png)
114-
*Figure 1: CAT Pattern architecture showing the three-tier separation of concerns*
115-
116113
---
117114

118115
## 🔐 Key Security Features
@@ -243,15 +240,6 @@ npm start
243240
* **Password:** `Pass123$`
244241
5. After successful login, you'll be redirected back to the Angular dashboard
245242

246-
![Angular Login Page](images/angular-login-page.png)
247-
*Figure 2: TalentManagement Angular application login page*
248-
249-
![IdentityServer Login](images/identityserver-login.png)
250-
*Figure 3: Duende IdentityServer authentication page*
251-
252-
![Application Dashboard](images/application-dashboard.png)
253-
*Figure 4: TalentManagement dashboard after successful authentication*
254-
255243
### Common Issues
256244

257245
**IdentityServer won't start**

docs/02-token-service-deep-dive.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,6 @@ The signature is created by:
331331
3. Signing with a private key using the algorithm specified in the header
332332
4. Base64 encoding the result
333333

334-
![Token Structure](images/jwt-token-structure.png)
335-
*Figure 6: JWT token structure showing header, payload, and signature components*
336-
337334
---
338335

339336
## 🏗️ Duende IdentityServer Overview
@@ -372,9 +369,6 @@ Our IdentityServer setup consists of three main components:
372369
* Programmatic access to IdentityServer configuration
373370
* Integration with automation tools
374371

375-
![IdentityServer Admin UI](images/identityserver-admin-ui.png)
376-
*Figure 5: Duende IdentityServer Admin UI for managing clients, resources, and users*
377-
378372
---
379373

380374
## ⚙️ Configuration Deep Dive

docs/03-api-resource-deep-dive.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -639,9 +639,6 @@ namespace TalentManagementAPI.WebApi.Controllers.v1
639639
- Returns `IActionResult` (not strongly-typed `ActionResult<T>`)
640640
- Uses `Guid` for all entity IDs
641641

642-
![Swagger UI](images/swagger-api-endpoints.png)
643-
*Figure 7: Swagger UI showing TalentManagement API endpoints with authentication*
644-
645642
---
646643

647644
## 🔒 Authentication & Authorization

docs/04-angular-client-deep-dive.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -712,12 +712,6 @@ export class EmployeeService extends BaseApiService<Employee> {
712712
* Only needs to define `endpoint` property
713713
* Can add custom methods as needed
714714

715-
![Employee List](images/employee-list-page.png)
716-
*Figure 8: TalentManagement employee list with Material Design data table*
717-
718-
![Employee Form](images/employee-form.png)
719-
*Figure 9: Create/Edit employee form with validation and Material Design components*
720-
721715
---
722716

723717
## 📝 Summary

docs/06-real-world-features.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,6 @@ namespace TalentManagementAPI.Application.Features.Employees.Commands.DeleteEmpl
190190
- Publishes **domain events** on changes
191191
- Proper null checking with failure results
192192

193-
![CRUD Operations](images/crud-operations.png)
194-
*Figure 10: TalentManagement CRUD operations - Create, Read, Update, Delete employee records*
195-
196193
---
197194

198195
### Frontend: Complete CRUD with BaseApiService
@@ -607,9 +604,6 @@ this.employeeService.getAllPaged(params).subscribe({
607604
* Client controls response payload
608605
* Security: only allowed fields can be requested
609606

610-
![Search and Filtering](images/search-filtering-ui.png)
611-
*Figure 11: Advanced search and filtering with pagination and field shaping*
612-
613607
---
614608

615609
## 📝 Summary

0 commit comments

Comments
 (0)