Module: Seo::ApplicationHelper

Defined in:
app/helpers/seo/application_helper.rb

Instance Method Summary collapse

Instance Method Details

#seo_data ⇒ Object



4
5
6
7
8
9
10
11
12
13
# File 'app/helpers/seo/application_helper.rb', line 4

def seo_data
  @seo_default ||= Seo::SeoPageDefault.first
  @seo = Seo::SeoPage.where(url_identifier: request.fullpath).first || Seo::SeoPage.new
  
  @seo.page_title ||= @seo_default.page_title
  @seo.meta_keywords ||= @seo_default.meta_keywords
  @seo.meta_description ||= @seo_default.meta_description
  
  @seo
end