Skip to content

Commit 819b688

Browse files
refactor: the realm identifier parameter has been removed and replaced with tenant identifier in all references
1 parent bd60799 commit 819b688

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Boundaries/Comanda.Subscriptions/Source/Comanda.Subscriptions.Application/Handlers/Traceability/FetchActivitiesHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public async Task<Result<PaginationScheme<ActivityDetailsScheme>>> HandleAsync(
99
var filters = ActivityFilters.WithSpecifications()
1010
.WithAction(parameters.Action)
1111
.WithUser(parameters.UserId)
12-
.WithRealm(parameters.RealmId)
12+
.WithTenant(parameters.TenantId)
1313
.WithResource(parameters.Resource)
1414
.WithPagination(parameters.Pagination)
1515
.Build();

Boundaries/Comanda.Subscriptions/Source/Comanda.Subscriptions.Application/Payloads/Traceability/ActivityFetchParameters.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ public sealed record ActivityFetchParameters :
66
public string? Action { get; init; }
77
public string? Resource { get; init; }
88
public string? UserId { get; init; }
9-
public string? RealmId { get; init; }
9+
public string? TenantId { get; init; }
1010

1111
public PaginationFilters Pagination { get; init; } = new();
1212
public SortFilters? Sort { get; init; }
13-
}
13+
}

0 commit comments

Comments
 (0)