# ---------------
# Various ways to customize Mastodon's behavior
# ---------------
-
+
# Maximum allowed character count
MAX_TOOT_CHARS=500
# Units are in bytes
MAX_EMOJI_SIZE=51200
MAX_REMOTE_EMOJI_SIZE=204800
+
+# Source code repository
+GITHUB_REPOSITORY=kibicat/mastodon
+# Or if it isn’t hosted on GitHub…
+# SOURCE_BASE_URL=https://github.com/kibicat/mastodon
end
def suffix
- '+glitch'
+ '+kibicat'
end
def to_a
end
def repository
- ENV.fetch('GITHUB_REPOSITORY', 'glitch-soc/mastodon')
+ ENV.fetch('GITHUB_REPOSITORY', 'kibicat/mastodon')
end
def source_base_url
end
describe '#source_url' do
- it 'returns "https://github.com/glitch-soc/mastodon"' do
- expect(instance_presenter.source_url).to eq('https://github.com/glitch-soc/mastodon')
+ it 'returns "https://github.com/kibicat/mastodon"' do
+ expect(instance_presenter.source_url).to eq('https://github.com/kibicat/mastodon')
end
end