mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
ca44c13455
* Add helper method to return Setting.site_title * Use site_title helper in application layout * Use site_title value for og:site_name
8 lines
109 B
Ruby
8 lines
109 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SiteTitleHelper
|
|
def site_title
|
|
Setting.site_title.to_s
|
|
end
|
|
end
|