Point to Chuckya repo URL by default

This commit is contained in:
Essem 2023-07-17 10:26:33 -05:00
parent 84075be6a1
commit e036958642
No known key found for this signature in database
GPG key ID: 7D497397CC3A2A8C
2 changed files with 3 additions and 3 deletions
lib/mastodon
spec/presenters

View file

@ -33,7 +33,7 @@ module Mastodon
end
def repository
ENV.fetch('GITHUB_REPOSITORY', 'glitch-soc/mastodon')
ENV.fetch('GITHUB_REPOSITORY', 'TheEssem/mastodon')
end
def source_base_url

View file

@ -108,8 +108,8 @@ describe InstancePresenter do
end
end
it 'defaults to the core glitch-soc repo URL' do
expect(instance_presenter.source_url).to eq('https://github.com/glitch-soc/mastodon')
it 'defaults to the core chuckya repo URL' do
expect(instance_presenter.source_url).to eq('https://github.com/TheEssem/mastodon')
end
end
end