-
Notifications
You must be signed in to change notification settings - Fork 5
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
[BE] issue384: Refresh Token 제거 #385
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
7862484
chore: frontend CI 설정
nan-noo 3bcbfc2
chore: dev 환경 배포 스크립트 작성
verus-j d595111
fix: install 과정 추가
airman5573 491cb58
Merge pull request #118 from woowacourse-teams/develop
tco0427 6ed260d
refactor: 사용하지 않는 파일 삭제
nan-noo 8f98733
chore: 프론트엔드 prod cd 추가
nan-noo dab2ba3
Merge pull request #215 from woowacourse-teams/develop
tco0427 27b97f6
스프린트 4 Merge (#292)
tco0427 4e959d5
Revert "스프린트 4 Merge (#292)"
verus-j 26d6720
Merge pull request #305 from woowacourse-teams/revert-292-develop
verus-j 64f8490
Merge pull request #304 from woowacourse-teams/develop
verus-j 56e7fd3
Merge pull request #315 from woowacourse-teams/develop
verus-j 6515ca4
[FE] 프론트 웹 성능 최적화 (#375)
airman5573 20f5b6a
feat: RefreshToken을 제거한다.
tco0427 756afbf
chore: 충돌해결
tco0427 d7c35a3
feat: AuthenticatedRefresh 제거
tco0427 de2a1fb
feat: RefreshTokenExpirationException 제거
tco0427 614225a
feat: 토큰 검증 로직 변경
tco0427 6bd7956
refactor: refreshToken 메소드 분리
tco0427 c0f0bfc
docs: API 문서 최신화
tco0427 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Deploy Frontend Prod | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
defaults: | ||
run: | ||
working-directory: frontend | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [16.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
cache-dependency-path: "./frontend/package-lock.json" | ||
|
||
- name: Install | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Deploy | ||
run: curl ${{ secrets.FE_PROD_DEPLOY_REQUEST_URL }} |
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
11 changes: 0 additions & 11 deletions
11
backend/src/main/java/com/woowacourse/moamoa/auth/config/AuthenticatedRefresh.java
This file was deleted.
Oops, something went wrong.
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
39 changes: 0 additions & 39 deletions
39
...ain/java/com/woowacourse/moamoa/auth/controller/AuthenticatedRefreshArgumentResolver.java
This file was deleted.
Oops, something went wrong.
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
38 changes: 0 additions & 38 deletions
38
backend/src/main/java/com/woowacourse/moamoa/auth/domain/Token.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
backend/src/main/java/com/woowacourse/moamoa/auth/domain/repository/TokenRepository.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
.../src/main/java/com/woowacourse/moamoa/auth/exception/RefreshTokenExpirationException.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
꼼꼼하네요😎