This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 830
Fix relationship between guests, .well-known, and auth #3001
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
636cb8a
Have ServerConfig and co. do validation of the config in-house
turt2live 6b45e60
Update ServerTypeSelector for registration to use a server config
turt2live 00ebb5e
Make registration work with server configs
turt2live b6e027f
Make password resets use server config objects
turt2live 0b1a0c7
Make login pass around server config objects
turt2live 1f527e7
Bring server config juggling into MatrixChat
turt2live bb6ee10
Add language features to support server config changes
turt2live a4b6464
Appease the linter
turt2live ae63df9
Fix tests to use new serverConfig prop
turt2live 4ada66d
Fix rogue instance of old hsUrl property
turt2live 58b9eb4
Add a serverConfig property to MatrixChat for unit tests
turt2live eab209a
Log in to the right homeserver when changing the homeserver
turt2live 6a941ac
Merge pull request #2941 from matrix-org/travis/guests/block-ui
turt2live 8373765
Merge branch 'develop' into travis/feature/wellknown2
turt2live ee33a4e
Refactor "Next" button into ServerConfig components
turt2live e4576da
Render underlines and tooltips on custom server names in auth pages
turt2live 25e3f78
newline for the linter
turt2live 4c1ac38
Merge branch 'develop' into travis/feature/wellknown2
turt2live bb16357
Flag all generated configs as non-default by default
turt2live 34719b9
Only expose the fallback_hs_url if the homeserver is the default HS
turt2live 9b5830b
Restore use of full mxid login
turt2live 6e3b06f
Human de-linting
turt2live 60a1365
Merge pull request #2965 from matrix-org/travis/wk/tooltip
turt2live 8c326bf
Merge pull request #2964 from matrix-org/travis/wk/simplify-phases
turt2live f75dc9c
Merge pull request #2971 from matrix-org/travis/wk/fallback_hs
turt2live 1ea5b42
Merge branch 'travis/feature/wellknown2' into travis/wk/mxid
turt2live 3e10d3c
Merge pull request #2972 from matrix-org/travis/wk/mxid
turt2live 0c7aa39
Merge branch 'develop' into travis/feature/wellknown2
turt2live 3476be3
Merge branch 'develop' into travis/feature/wellknown2
turt2live 595b490
Don't act busy on the login page for moving your cursor
turt2live 7ecab35
Add a null guard for serverConfig
turt2live 14dc4b4
Merge branch 'develop' into travis/feature/wellknown2
turt2live ea1c778
Fix copyright
turt2live File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
Copyright 2019 New Vector Ltd. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
.mx_TextWithTooltip_tooltip { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you tested the email validation flow with these changes in place? (That's one area we've tended to break...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, several times.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just to follow up: I re-tested the two common scenarios just to be absolutely sure it works.