-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #442 from woowacourse-teams/dev
release v1.0.0
- Loading branch information
Showing
418 changed files
with
16,558 additions
and
4,193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: sonar imagestorage | ||
on: | ||
pull_request: | ||
branches: [dev] | ||
paths: ["imagestorage/**"] | ||
types: [opened, synchronize, reopened] | ||
defaults: | ||
run: | ||
working-directory: imagestorage | ||
jobs: | ||
build: | ||
name: sonar imagestorage | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
- name: Cache SonarCloud packages | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.sonar/cache | ||
key: ${{ runner.os }}-sonar | ||
restore-keys: ${{ runner.os }}-sonar | ||
- name: Cache Gradle packages | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.gradle/caches | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | ||
restore-keys: ${{ runner.os }}-gradle | ||
- name: Build and analyze | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
run: ./gradlew build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[[Hosts]] | ||
== 호스트 | ||
|
||
=== 호스트 비밀번호 변경 | ||
operation::hosts/spacePassword_update/success[snippets='http-request,http-response'] | ||
|
||
=== 입장코드 조회 | ||
operation::hosts/entranceCode[snippets='http-request,http-response,response-fields'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[[Image-upload]] | ||
== 이미지 업로드 | ||
operation::image-upload[snippets='http-request,http-response,request-parts,response-fields'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[[RunningTask]] | ||
== RunningTask | ||
|
||
=== RunningTask 정보 조회 | ||
|
||
operation::runningTasks/find/success[snippets='http-request,http-response,path-parameters,response-fields'] | ||
|
||
=== RunningTask 완료 여부 확인 | ||
|
||
operation::runningTasks/active/success[snippets='http-request,http-response,path-parameters,response-fields'] | ||
|
||
=== RunningTask check 상태 변환 | ||
|
||
operation::runningTasks/check/success[snippets='http-request,http-response,path-parameters'] | ||
|
||
=== RunningTask 생성 | ||
|
||
operation::runningTasks/create/success[snippets='http-request,http-response,path-parameters'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
[[Submission]] | ||
== submission | ||
|
||
=== 제출 | ||
operation::submissions/submit/success[snippets='http-request,http-response'] | ||
=== submission 목록 조회 | ||
|
||
operation::submissions/list[snippets='http-request,http-response,path-parameters,response-fields'] | ||
|
||
=== 완료된 job tasks의 submission 제출 | ||
|
||
operation::submissions/submit/success[snippets='http-request,http-response,path-parameters,request-fields'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
[[Task]] | ||
== task | ||
|
||
=== tasks 정보 조회 | ||
operation::tasks/find/success[snippets='http-request,http-response'] | ||
=== task 완료 여부 확인 | ||
operation::tasks/active/success[snippets='http-request,http-response'] | ||
=== task check 상태 변환 | ||
operation::tasks/check/success[snippets='http-request,http-response'] | ||
=== runningtask 생성 | ||
operation::tasks/create/success[snippets='http-request,http-response'] | ||
=== Task 정보 조회 | ||
|
||
operation::tasks/find/success[snippets='http-request,http-response,path-parameters,response-fields'] |
13 changes: 0 additions & 13 deletions
13
backend/src/main/java/com/woowacourse/gongcheck/SimpleImageUploader.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
backend/src/main/java/com/woowacourse/gongcheck/application/AlertService.java
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
backend/src/main/java/com/woowacourse/gongcheck/application/HostService.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
backend/src/main/java/com/woowacourse/gongcheck/application/ImageUploader.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.