aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/blog_post.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/blog_post.rb')
-rw-r--r--app/models/blog_post.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/blog_post.rb b/app/models/blog_post.rb
index 1887a97..60d982a 100644
--- a/app/models/blog_post.rb
+++ b/app/models/blog_post.rb
@@ -13,6 +13,10 @@ class BlogPost < ActiveRecord::Base
scope :by_archive, lambda { |archive_date|
where(['published_at between ? and ?', archive_date.beginning_of_month, archive_date.end_of_month]).order("published_at DESC")
}
+
+ scope :by_year, lambda { |archive_year|
+ where(['published_at between ? and ?', archive_year.beginning_of_year, archive_year.end_of_year]).order("published_at DESC")
+ }
scope :all_previous, where(['published_at <= ?', Time.now.beginning_of_month]).order("published_at DESC")