Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
byzaya committed Jan 5, 2024
1 parent afabf05 commit 84ca8a8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public ResponseEntity<?> getAll() {
@Operation(
summary = "Получение всех товаров доступных для обычных пользователей",
description =
"Получение всех товаров(рецептурных и не рецептурных) доступных для обычных"
+ " пользователей")
"Получение всех товаров(рецептурных и не рецептурных) доступных для обычных"
+ " пользователей")
@GetMapping("/normal/all")
public ResponseEntity<?> getAllReceiptAndNot() {
return ResponseEntity.ok(
Expand All @@ -42,7 +42,7 @@ public ResponseEntity<?> getAllReceiptAndNot() {
summary = "Получение всех товаров доступных для доктора",
description =
"Получение всех товаров(рецептурных, не рецептурных и специальных по профессии доктора) "
+ "доступных для доктора по его id")
+ "доступных для доктора по его id")
@GetMapping("/doc/all")
public ResponseEntity<?> getAllItemsByDocId(@RequestParam(value = "user_id") Long userId) {
return ResponseEntity.ok(
Expand Down

0 comments on commit 84ca8a8

Please sign in to comment.