This website works better with JavaScript.
Home
Explore
Help
Sign In
jyt94
/
closedSocialMastodon
forked from
closed-social/mastodon
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
闭社主体 forked from
https://github.com/tootsuite/mastodon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2042
Commits
3
Branches
123 MiB
Tree:
43f955e31f
closed-social-v3
cs+3.4.6
master
v0.1.2
v0.1.1
v0.1.0
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from '43f955e31f'
${ noResults }
closedSocialMastodon
/
app
/
helpers
/
site_title_helper.rb
7 lines
109 B
Raw
Normal View
History
Use Setting.site_title value for `og:site_name` occurrences (#1194) * Add helper method to return Setting.site_title * Use site_title helper in application layout * Use site_title value for og:site_name
7 years ago
# frozen_string_literal: true
module
SiteTitleHelper
def
site_title
Setting
.
site_title
.
to_s
end
end