Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test] cd test #208

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ application.yaml
### DS_Store
.DS_Store

### fcm
winey-firebase.json

### banner.txt
banner.txt

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.http.HttpStatus;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
import org.winey.server.common.dto.ApiResponse;
import org.winey.server.controller.response.recommend.RecommendListResponseDto;
import org.winey.server.exception.Error;
import org.winey.server.exception.Success;
import org.winey.server.service.RecommendService;

import javax.validation.Valid;
import javax.validation.constraints.Min;
import javax.validation.constraints.Size;

@RestController
@RequiredArgsConstructor
@RequestMapping("/recommend")
Expand All @@ -32,5 +31,4 @@ public ApiResponse<RecommendListResponseDto> getRecommend(@RequestParam int page
return ApiResponse.error(Error.PAGE_REQUEST_VALIDATION_EXCEPTION, Error.PAGE_REQUEST_VALIDATION_EXCEPTION.getMessage());
return ApiResponse.success(Success.GET_RECOMMEND_LIST_SUCCESS, recommendService.getRecommend(page));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,4 @@ public ApiResponse updateAllowedNotification (@UserId Long userId, @RequestBody
return ApiResponse.success(Success.UPDATE_PUSH_ALLOWED_SUCCESS, result);
}
}

1 change: 0 additions & 1 deletion src/main/java/org/winey/server/service/FcmService.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,3 @@ private String makeSingleMessage(FcmRequestDto wineyNotification) throws JsonPro
}

}

27 changes: 0 additions & 27 deletions src/main/resources/logback-spring.xml

This file was deleted.

Empty file.
Loading