e1911f58b1
OrgBoard module (references SharedKernel only; RBAC via ICurrentUser/IPermissionService):
- Organization, Team, Seat (human/open/ai), WorkItem (board task: type, status, assignee,
parent) entities; internal OrgBoardDbContext (schema "orgboard") + InitialOrgBoard
migration; design-time factory. (WorkItem avoids the System.Threading.Tasks.Task clash.)
- Endpoints under /api/orgboard, every mutation permission-checked at the scope chain
[team, org]: POST /organizations, POST/GET /teams, POST /tasks, GET /board (columns
backlog->in progress->in review->done), PATCH /tasks/{id}/move, /assign, GET /cartable.
Test isolation: integration tests now use IClassFixture so each class gets its own
pgvector container (the bootstrap-once rule made a shared container collide).
Verified: build green; ArchitectureTests 8/8 (OrgBoard references only SharedKernel);
IntegrationTests 12/12 incl. a new board flow — owner sets up org+team, creates/moves/
assigns a task, sees it on the board and in the cartable; an invited Member can view the
board but is 403'd from creating a team.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
609 B
C#
24 lines
609 B
C#
using TeamUp.SharedKernel.Domain;
|
|
|
|
namespace TeamUp.Modules.OrgBoard.Domain;
|
|
|
|
/// <summary>The company. Its id is the Organization scope that org-level memberships are granted at.</summary>
|
|
internal sealed class Organization : Entity
|
|
{
|
|
public string Name { get; private set; } = null!;
|
|
public DateTimeOffset CreatedAtUtc { get; private set; }
|
|
|
|
private Organization()
|
|
{
|
|
}
|
|
|
|
public Organization(Guid id, string name, DateTimeOffset createdAtUtc)
|
|
{
|
|
Id = id;
|
|
Name = name;
|
|
CreatedAtUtc = createdAtUtc;
|
|
}
|
|
|
|
public void Rename(string name) => Name = name;
|
|
}
|