Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elsand committed Sep 11, 2024
1 parent 2b705c7 commit 683c578
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public async Task<GetDialogActivityResult> Handle(GetDialogActivityQuery request
dialog,
cancellationToken: cancellationToken);

// If we cannot read the dialog at all, we don't allow access to any of the activity history
// If we cannot access the dialog at all, we don't allow access to any of the activity history
if (!authorizationResult.HasAccessToMainResource())
{
return new EntityNotFound<DialogEntity>(request.DialogId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public async Task<SearchDialogActivityResult> Handle(SearchDialogActivityQuery r
dialog,
cancellationToken: cancellationToken);

// If we cannot read the dialog at all, we don't allow access to any of the activity history
// If we cannot access the dialog at all, we don't allow access to any of the activity history
if (!authorizationResult.HasAccessToMainResource())
{
return new EntityNotFound<DialogEntity>(request.DialogId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public async Task<GetDialogSeenLogResult> Handle(GetDialogSeenLogQuery request,
dialog,
cancellationToken: cancellationToken);

// If we cannot read the dialog at all, we don't allow access to the seen log
// If we cannot access the dialog at all, we don't allow access to the seen log
if (!authorizationResult.HasAccessToMainResource())
{
return new EntityNotFound<DialogEntity>(request.DialogId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public async Task<SearchDialogSeenLogResult> Handle(SearchDialogSeenLogQuery req
dialog,
cancellationToken: cancellationToken);

// If we cannot read the dialog at all, we don't allow access to the seen log
// If we cannot access the dialog at all, we don't allow access to the seen log
if (!authorizationResult.HasAccessToMainResource())
{
return new EntityNotFound<DialogEntity>(request.DialogId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public async Task<GetDialogTransmissionResult> Handle(GetDialogTransmissionQuery
dialog,
cancellationToken: cancellationToken);

// If we cannot read the dialog at all, we don't allow access to any of the dialog transmissions.
// If we cannot access the dialog at all, we don't allow access to any of the dialog transmissions.
if (!authorizationResult.HasAccessToMainResource())
{
return new EntityNotFound<DialogEntity>(request.DialogId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public async Task<SearchDialogTransmissionResult> Handle(SearchDialogTransmissio
dialog,
cancellationToken: cancellationToken);

// If we cannot read the dialog at all, we don't allow access to any of the activity history
// If we cannot access the dialog at all, we don't allow access to any of the activity history
if (!authorizationResult.HasAccessToMainResource())
{
return new EntityNotFound<DialogEntity>(request.DialogId);
Expand Down

0 comments on commit 683c578

Please sign in to comment.