From: Ashley Date: Thu, 27 Apr 2017 13:17:55 +0000 (+1200) Subject: Added '(dev)' to the title in development mode (#2524) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=1736badf28eae2ba42e42f9fef2e151e35d5397a;p=mastodon.git Added '(dev)' to the title in development mode (#2524) * Added different title for dev * Changed indentation --- diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index d25b12998..14c7447c0 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -18,4 +18,8 @@ module ApplicationHelper env_suffix = Rails.env.production? ? '' : '-dev' asset_path "favicon#{env_suffix}.ico" end + + def title + Rails.env.production? ? site_title : "#{site_title} (Dev)" + end end diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 01c42db93..602d502a9 100755 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -17,7 +17,7 @@ - if content_for?(:page_title) = yield(:page_title) = ' - ' - = site_title + = title = stylesheet_link_tag stylesheet_for_layout, media: 'all' = csrf_meta_tags