rosa-build/app/helpers/application_helper.rb

12 lines
269 B
Ruby
Raw Normal View History

2011-03-09 13:13:36 +00:00
module ApplicationHelper
def choose_title
title = if ['categories', 'personal_repositories', 'downloads'].include?(controller.controller_name)
APP_CONFIG['repo_project_name']
else
APP_CONFIG['project_name']
end
return title
end
2011-03-09 13:13:36 +00:00
end