yavsc/src
Paul Schneider b3056f1c2e
All checks were successful
Dotnet build and test / log-the-inputs (pull_request) Successful in 26s
Dotnet build and test / build (pull_request) Successful in 14m59s
feat(user-search): add UserSearchApiController in Yavsc.Blogs
Lives in Yavsc.Blogs (not Yavsc.Api) because Yavsc.Api is not
yet enabled in production; future migration to Yavsc.Api is a
single namespace + route prefix change.

Endpoint: GET /api/user-search?q=<name>&e=<email>&take=<n>
- Authorisation: [Authorize] (any authenticated caller).
- q: case-insensitive substring match on FullName OR UserName.
- e: case-insensitive exact match on Email.
- take: 1..100, default 25.

Returns a flat UserSearchResultDto (Id, UserName, FullName,
Avatar, Email) — no navigation properties, so the payload
stays small even if the user table grows.

The Email field is included because the address-book use case
(composing circle membership, sending invites) needs it.
On Yavsc's single-tenant deployments the user table is a
closed community; multi-tenant deployments should gate this
controller behind a tenant-scoped policy before exposing it.
The trade-off is documented in the controller's class-level
XML doc.
2026-08-18 00:20:10 +01:00
..
cli WIP audiences 2026-07-12 02:42:13 +01:00
PostIt refactor(model): rename Yavsc.Blogspot.BlogPost to BlogPostDto 2026-08-18 00:20:01 +01:00
PostIt.Tests refactor(model): rename Yavsc.Blogspot.BlogPost to BlogPostDto 2026-08-18 00:20:01 +01:00
Yavsc.Abstract refactor(model): rename Yavsc.Blogspot.BlogPost to BlogPostDto 2026-08-18 00:20:01 +01:00
Yavsc.Api refactor(blogacl): move BlogAcl + Circle controllers from Yavsc.Api to Yavsc.Blogs 2026-08-17 23:34:48 +01:00
Yavsc.Api.Client refactor(model): rename Yavsc.Blogspot.BlogPost to BlogPostDto 2026-08-18 00:20:01 +01:00
Yavsc.Blogs feat(user-search): add UserSearchApiController in Yavsc.Blogs 2026-08-18 00:20:10 +01:00
Yavsc.Blogs.Tests Fix blog comment endpoint path and add regression test 2026-08-10 21:48:03 +01:00
Yavsc.Org Add comments API support and tests 2026-08-10 22:27:52 +01:00
Yavsc.Org.Tests Add comments API support and tests 2026-08-10 22:27:52 +01:00
Yavsc.Server fix(billing): tolerate ReflectionTypeLoadException during init 2026-08-16 16:35:05 +01:00
Yavsc.Tests.Shared tests: configure static fixture ports and update org test config 2026-07-12 05:48:47 +01:00