-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: github workflow 설정 추가 * refactor: 알림 발송형태 수정 * refactor: 컬럼명 수정 (cherry picked from commit 6df04f2)
- Loading branch information
1 parent
9e360af
commit 0ed26d3
Showing
8 changed files
with
125 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
기능: feature/* | ||
버그: fix/* | ||
리팩터링: refactor/* | ||
문서: docs/* | ||
테스트: test/* | ||
인프라: infra/* |
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,12 @@ | ||
name: PR Labeler | ||
on: | ||
pull_request: | ||
types: [ opened ] | ||
|
||
jobs: | ||
pr-labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: TimonVS/pr-labeler-action@v4 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
13 changes: 3 additions & 10 deletions
13
src/main/java/in/koreatech/koin/global/domain/notification/model/NotificationFactory.java
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
18 changes: 18 additions & 0 deletions
18
src/main/java/in/koreatech/koin/global/fcm/MobileAppPath.java
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 @@ | ||
package in.koreatech.koin.global.fcm; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public enum MobileAppPath { | ||
HOME("home", "home"), | ||
LOGIN("login", "login"), | ||
; | ||
|
||
private final String android; | ||
private final String apple; | ||
|
||
MobileAppPath(String android, String apple) { | ||
this.android = android; | ||
this.apple = apple; | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
src/main/resources/db/migration/V8__alter_notificaion_change_column_name.sql
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,2 @@ | ||
ALTER TABLE `notification` | ||
CHANGE COLUMN url app_path VARCHAR(255); |