Add opal representation properties for scripting feed, account and

folder.
This commit is contained in:
Olof Hellman
2018-01-19 22:49:01 -08:00
parent fe5a11a2cc
commit 2973bf8edb
7 changed files with 45 additions and 1 deletions

View File

@@ -80,6 +80,11 @@ class ScriptableFeed: NSObject, UniqueIdScriptingObject, ScriptingObjectContaine
return self.feed.faviconURL ?? ""
}
@objc(opmlRepresentation)
var opmlRepresentation:String {
return self.feed.OPMLString(indentLevel:0)
}
@objc(authors)
var authors:NSArray {
let feedAuthors = feed.authors ?? []