Change FAS link from admin.fp.o to accounts.fp.o

This commit is contained in:
Lenka Segura 2021-07-29 09:14:27 +02:00 committed by mobrien
parent b78179ed3c
commit d654d59f3a
14 changed files with 20 additions and 20 deletions

View file

@ -112,7 +112,7 @@ class AccountSystem(BaseClient):
# URLs for remote avatar providers.
_valid_avatar_services = ['libravatar', 'gravatar']
def __init__(self, base_url='https://admin.fedoraproject.org/accounts/',
def __init__(self, base_url='https://accounts.fedoraproject.org/',
*args, **kwargs):
'''Create the AccountSystem client object.

View file

@ -101,14 +101,14 @@ VERBOSE = False
DRYRUN = False
{% if env == 'staging' %}
FASURL = 'https://admin.stg.fedoraproject.org/accounts'
FASURL = 'https://accounts.stg.fedoraproject.org'
FASINSECURE = True
PAGUREURL = 'https://stg.pagure.io'
PAGURE_DIST_GIT_URL = 'https://src.stg.fedoraproject.org'
PDCURL = 'https://pdc.stg.fedoraproject.org/rest_api/v1/'
MDAPIURL = 'https://apps.stg.fedoraproject.org/mdapi/'
{% else %}
FASURL = 'https://admin.fedoraproject.org/accounts'
FASURL = 'https://accounts.fedoraproject.org'
FASINSECURE = False
PAGUREURL = 'https://pagure.io'
PAGURE_DIST_GIT_URL = 'https://src.fedoraproject.org'
@ -190,8 +190,8 @@ address.
c) Change your Fedora Account System email to match your existing
bugzilla.redhat.com account.
https://admin.fedoraproject.org/accounts login, click on 'my account',
then 'edit' and change your email address.
https://accounts.fedoraproject.org login, click on 'Edit profile',
then 'Emails' and change your email address.
If you have questions or concerns, please let us know.

View file

@ -244,11 +244,11 @@ REQUIRED_GROUPS = {
{% if env == 'staging' %}
RESULTSDB_URL = 'https://taskotron.stg.fedoraproject.org/resultsdb_api/'
FAS_URL = 'https://admin.stg.fedoraproject.org/accounts'
FAS_URL = 'https://accounts.stg.fedoraproject.org'
FAS_OPENID_ENDPOINT = 'https://id.stg.fedoraproject.org/openid/'
{% else %}
RESULTSDB_URL = 'https://taskotron.fedoraproject.org/resultsdb_api/'
FAS_URL = 'https://admin.fedoraproject.org/accounts'
FAS_URL = 'https://accounts.fedoraproject.org'
{% endif %}
THEME_TEMPLATE_FOLDER = '/usr/share/pagure_dist_git/template/'