aboutsummaryrefslogtreecommitdiffstats
path: root/app/models
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2014-03-02 21:57:14 +0100
committerHarald Eilertsen <haraldei@anduin.net>2014-03-02 21:57:14 +0100
commita565503bef77c14892a131575e1927b2b98c859f (patch)
treeffcff80acc325a9cebd5b3a085a6b4d485ecaeb5 /app/models
parent455abf20321fbf2cd8247a95973787b1af21ccde (diff)
downloadhmnoweb-a565503bef77c14892a131575e1927b2b98c859f.tar.gz
hmnoweb-a565503bef77c14892a131575e1927b2b98c859f.tar.bz2
hmnoweb-a565503bef77c14892a131575e1927b2b98c859f.zip
Allow customization of number of sidebar items for each category.
Diffstat (limited to 'app/models')
-rw-r--r--app/models/sidebar_blog_category.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/sidebar_blog_category.rb b/app/models/sidebar_blog_category.rb
index 53d15af..fb867ac 100644
--- a/app/models/sidebar_blog_category.rb
+++ b/app/models/sidebar_blog_category.rb
@@ -2,7 +2,7 @@ class SidebarBlogCategory < SidebarModule
def initialize(category)
@title = category.title
@position = category.sidebar_position
- @posts = category.posts.recent(5)
+ @posts = category.posts.recent(category.sidebar_items)
end
def body