Add labels to posts
This commit is contained in:
@@ -11,16 +11,19 @@ struct FeedEntryData {
|
||||
|
||||
let tags: [Tag]
|
||||
|
||||
let labels: [ContentLabel]
|
||||
|
||||
let text: [String]
|
||||
|
||||
let media: Media?
|
||||
|
||||
init(entryId: String, title: String?, textAboveTitle: String, link: Link?, tags: [Tag], text: [String], media: Media?) {
|
||||
init(entryId: String, title: String?, textAboveTitle: String, link: Link?, tags: [Tag], labels: [ContentLabel], text: [String], media: Media?) {
|
||||
self.entryId = entryId
|
||||
self.title = title
|
||||
self.textAboveTitle = textAboveTitle
|
||||
self.link = link
|
||||
self.tags = tags
|
||||
self.labels = labels
|
||||
self.text = text
|
||||
self.media = media
|
||||
}
|
||||
|
Reference in New Issue
Block a user