11 lines
400 B
C#
11 lines
400 B
C#
// Licensed to StellaOps under the BUSL-1.1 license.
|
|
|
|
namespace StellaOps.ReachGraph.Persistence;
|
|
|
|
public sealed partial class PostgresReachGraphRepository
|
|
{
|
|
// Tenant context is now managed by DataSourceBase.OpenConnectionAsync(tenantId, role).
|
|
// The base class sets app.tenant_id and app.current_tenant via ConfigureSessionAsync.
|
|
// No per-repository tenant context setup is needed.
|
|
}
|