Skip to content

Commit

Permalink
コメントの誤りを訂正
Browse files Browse the repository at this point in the history
  • Loading branch information
KentaHizume committed Dec 26, 2024
1 parent ce162d0 commit cc1d5ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public async Task UpdateCatalogItemAsync(
/// <param name="categoryId">カタログカテゴリ ID 。</param>
/// <param name="cancellationToken">キャンセルトークン。</param>
/// <returns>カタログページと総アイテム数のタプルを返す非同期処理を表すタスク。</returns>
/// <exception cref="PermissionDeniedException">更新権限がない場合。</exception>
/// <exception cref="PermissionDeniedException">取得権限がない場合。</exception>
public async Task<(IReadOnlyList<CatalogItem> ItemsOnPage, int TotalItems)> GetCatalogItemsByAdminAsync(int skip, int take, long? brandId, long? categoryId, CancellationToken cancellationToken = default)
{
this.logger.LogDebug(Events.DebugEvent, LogMessages.CatalogApplicationService_GetCatalogItemsByAdminAsyncStart, brandId, categoryId);
Expand Down Expand Up @@ -308,7 +308,7 @@ public async Task UpdateCatalogItemAsync(
/// <param name="catalogItemId">カタログアイテム ID 。</param>
/// <param name="cancellationToken">キャンセルトークン。</param>
/// <returns>カタログアイテム。</returns>
/// <exception cref="PermissionDeniedException">更新権限がない場合。</exception>
/// <exception cref="PermissionDeniedException">取得権限がない場合。</exception>
/// <exception cref="CatalogItemNotExistingInRepositoryException">取得対象のカタログアイテムが存在しなかった場合。</exception>
public async Task<CatalogItem?> GetCatalogItemByAdminAsync(long catalogItemId, CancellationToken cancellationToken = default)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import type {

/**
* カテゴリの情報を取得します。
* UIの都合で、すべてのカテゴリを表すカテゴリの情報を追加します。
* @returns カタログカテゴリの配列。
*/
export async function fetchCategories(): Promise<
Expand All @@ -26,7 +25,6 @@ export async function fetchCategories(): Promise<

/**
* ブランドの情報を取得します。
* UIの都合で、すべてのカテゴリを表すカテゴリの情報を追加します。
* @returns カテゴリブランドの配列。
*/
export async function fetchBrands(): Promise<GetCatalogBrandsResponse[]> {
Expand Down Expand Up @@ -143,6 +141,7 @@ export async function updateCatalogItem(
/**
* 対象の ID を持つアイテムをカタログから削除します。
* @param id アイテム ID 。
* @param rowVersion 排他制御のための行バージョン。
*/
export async function deleteCatalogItem(id: number, rowVersion: string) {
await catalogItemsApi.deleteCatalogItem(id, rowVersion);
Expand Down

0 comments on commit cc1d5ff

Please sign in to comment.