Skip to content

Commit

Permalink
Merge branch 'develop' into feature/withdraw
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethen committed Aug 29, 2022
2 parents 66f1ef2 + d9a0c7a commit 8ad0afb
Show file tree
Hide file tree
Showing 31 changed files with 329 additions and 26 deletions.
8 changes: 6 additions & 2 deletions Projects/DataSource/Sources/Like/Post/PostLikeRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,18 @@ public struct PostLikeRequestBody: RequestBody {
public var receiverProfileId: Int

public var senderProfileId: Int


public var weddingId: Int

public init(
message: String,
receiverProfileId: Int,
senderProfileId: Int
senderProfileId: Int,
weddingId: Int
) {
self.message = message
self.receiverProfileId = receiverProfileId
self.senderProfileId = senderProfileId
self.weddingId = weddingId
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"images" : [
{
"filename" : "ic_guest_list_empty_view.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"preserves-vector-representation" : true
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"images" : [
{
"filename" : "ic_plus_disable.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"preserves-vector-representation" : true
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"images" : [
{
"filename" : "ic_plus_enable.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"preserves-vector-representation" : true
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"images" : [
{
"filename" : "ic_plus_highlight.svg",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
},
"properties" : {
"preserves-vector-representation" : true
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions Projects/DesignSystem/Sources/Assets/AssetImage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ public enum Assets: String {
case ic_report
case nice_completed
case btn_kakao_login
case ic_guest_list_empty_view
case ic_plus_highlight
case ic_plus_enable
case ic_plus_disable

public var image: UIImage? {
let bundle = Bundle(identifier: "kr.mash-up.DesignSystem")
Expand Down
Loading

0 comments on commit 8ad0afb

Please sign in to comment.