generated from semicolondsm/Semicolon_Repository_Generator
-
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.
- Loading branch information
Showing
12 changed files
with
85 additions
and
37 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
Application/Resources/Assets.xcassets/Image/Icon/ThumbDownNoti.imageset/Contents.json
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,15 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "ThumbDown.svg", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
}, | ||
"properties" : { | ||
"template-rendering-intent" : "template" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...ation/Resources/Assets.xcassets/Image/Icon/ThumbDownNoti.imageset/ThumbDown.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -8,5 +8,8 @@ | |
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
}, | ||
"properties" : { | ||
"template-rendering-intent" : "template" | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
Application/Resources/Assets.xcassets/Image/Icon/ThumbUpNoti.imageset/Contents.json
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,15 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "ThumbUpNoti.svg", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
}, | ||
"properties" : { | ||
"template-rendering-intent" : "template" | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...ation/Resources/Assets.xcassets/Image/Icon/ThumbUpNoti.imageset/ThumbUpNoti.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
19 changes: 15 additions & 4 deletions
19
Services/NotificationService/Sources/Domain/Enum/NotificationTopic.swift
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,8 +1,19 @@ | ||
import Foundation | ||
|
||
public enum NotificationTopic: String { | ||
case feed = "FEED" | ||
case application = "APPLICATION" | ||
case schedule = "SCHEDULE" | ||
case all = "ALL" | ||
case applicationWeekendMeal = "APPLICATION_WEEKEND_MEAL" | ||
case applicationStay = "APPLICATION_STAY" | ||
case applicationMoveClassRoom = "APPLICATION_MOVE_CLASSROOM" | ||
case applicationPicnic = "APPLICATION_PICNIC" | ||
case applicationPicnicPass = "APPLICATION_PICNIC_PASS" | ||
case applicationWeekendPicnic = "APPLICATION_WEEKEND_PICNIC" | ||
case applicationWeekendPicnicReservation = "APPLICATION_WEEKEND_PICNIC_RESERVATION" | ||
case allBadPoint = "ALL_BAD_POINT" | ||
case allGoodPoint = "ALL_GOOD_POINT" | ||
case allPenaltyLevel = "ALL_PENALTY_LEVEL" | ||
case scheduleLocal = "SCHEDULE_LOCAL" | ||
case scheduleSocial = "SCHEDULE_SOCIAL" | ||
case feedNotice = "FEED_NOTICE" | ||
case feedComment = "FEED_COMMENT" | ||
case feedLike = "FEED_LIKE" | ||
} |