Skip to content

Commit

Permalink
fix(api): Error messages fixed in api-key service (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nil2000 authored Sep 10, 2024
1 parent 89e2fcc commit edfbce0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/api/src/api-key/service/api-key.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class ApiKeyService {
const apiKeyId = apiKey.id

if (!apiKey) {
throw new NotFoundException(`API key with id ${apiKeyId} not found`)
throw new NotFoundException(`API key ${apiKeySlug} not found`)
}

const updatedApiKey = await this.prisma.apiKey.update({
Expand Down Expand Up @@ -137,7 +137,7 @@ export class ApiKeyService {
}
})
} catch (error) {
throw new NotFoundException(`API key with id ${apiKeySlug} not found`)
throw new NotFoundException(`API key ${apiKeySlug} not found`)
}

this.logger.log(`User ${user.id} deleted API key ${apiKeySlug}`)
Expand All @@ -161,7 +161,7 @@ export class ApiKeyService {
})

if (!apiKey) {
throw new NotFoundException(`API key with id ${apiKeySlug} not found`)
throw new NotFoundException(`API key ${apiKeySlug} not found`)
}

return apiKey
Expand Down

0 comments on commit edfbce0

Please sign in to comment.