aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/blog_category.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/blog_category.rb')
-rw-r--r--app/models/blog_category.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/models/blog_category.rb b/app/models/blog_category.rb
index bc0165a..263982c 100644
--- a/app/models/blog_category.rb
+++ b/app/models/blog_category.rb
@@ -7,7 +7,10 @@ class BlogCategory < ActiveRecord::Base
validates :title, :presence => true, :uniqueness => true
- has_friendly_id :title, :use_slug => true
+ has_friendly_id :title, :use_slug => true,
+ :default_locale => (::Refinery::I18n.default_frontend_locale rescue :en),
+ :approximate_ascii => RefinerySetting.find_or_set(:approximate_ascii, false, :scoping => 'blog'),
+ :strip_non_ascii => RefinerySetting.find_or_set(:strip_non_ascii, false, :scoping => 'blog')
def post_count
posts.select(&:live?).count