Skip to content

Commit

Permalink
[TASK] added username and password properties to the example fusion
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrundkoetter committed Aug 31, 2021
1 parent 4a6bfd2 commit f4249a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Resources/Private/Fusion/NodeTypes/PostList.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ prototype(Ujamii.ExternalBlog:Content.PostList) < prototype(Neos.Neos:ContentCom
feedUrl = ${q(node).property('feedUrl')}
numberOfItemsToShow = ${q(node).property('numberOfItemsToShow')}
itemOffset = ${q(node).property('itemOffset')}
username = ${q(node).property('username')}
password = ${q(node).property('password')}

posts = ${Ujamii.ExternalBlog.getBlogPosts(this.feedUrl, this.numberOfItemsToShow, this.itemOffset)}
posts = ${Ujamii.ExternalBlog.getBlogPosts(this.feedUrl, this.numberOfItemsToShow, this.itemOffset, true, this.username, this.password)}

renderer = Neos.Fusion:Case {
noURL {
Expand Down

0 comments on commit f4249a0

Please sign in to comment.