Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hail-is/hail
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 46c48c3d2359f4786ce56b0b4504b9616b757a5d
Choose a base ref
..
head repository: hail-is/hail
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bf845f62e68a3fa878875ef510a840f686f597bb
Choose a head ref
Showing 4,394 changed files with 1,011 additions and 208 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 3 additions & 3 deletions auth/auth/auth.py
Original file line number Diff line number Diff line change
@@ -203,7 +203,7 @@ def _delete(key):
def validate_next_page_url(next_page):
if not next_page:
raise web.HTTPBadRequest(text='Invalid next page: empty')
valid_next_services = ['batch', 'auth']
valid_next_services = ['batch', 'auth', 'ci', 'monitoring']
valid_next_domains = [urlparse(deploy_config.external_url(s, '/')).netloc for s in valid_next_services]
actual_next_page_domain = urlparse(next_page).netloc

@@ -221,15 +221,15 @@ async def get_healthcheck(_) -> web.Response:

@routes.get('')
@routes.get('/')
@auth.maybe_authenticated_user
@web_security_headers
@auth.maybe_authenticated_user
async def get_index(request: web.Request, userdata: Optional[UserData]) -> web.Response:
return await render_template('auth', request, userdata, 'index.html', {})


@routes.get('/creating')
@auth.maybe_authenticated_user
@web_security_headers
@auth.maybe_authenticated_user
async def creating_account(request: web.Request, userdata: Optional[UserData]) -> web.Response:
db = request.app[AppKeys.DB]
session = await aiohttp_session.get_session(request)
Loading