-
Notifications
You must be signed in to change notification settings - Fork 805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve Google Verification Service integration #10143
Merged
Merged
Changes from 3 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
3994f0f
Do not verify site on page load
Tug ce12e14
Show error notice on google site verification error response
Tug 4063d9c
Do not disable editing the meta tag even when site is verified
Tug 4574b80
Improve design for google site verification
Tug 5cad344
Align google verified checkbox vertically
cbauerman dbea585
Only update site verification token on load if it's not set yet
Tug dd15d2b
Do not revert to Site is verified immediately when user saves a custo…
Tug 630d9a3
Add a little bit of space between the input and the bottom message fo…
Tug f1fffb7
Increase size of external icon
Tug af5edcf
Track click on the 2 google site verification options
Tug 1743b7f
Get the google search console admin url from the api response
Tug f59c439
Add message to unverify site
Tug 16b651e
Do not continue if the check verify endpoint returns an error
Tug c00bb05
Simplify true props in jsx
Tug 7a00bf2
Remove border left
Tug fe62fc0
Make sure users who cannot access the site keyring do not see the aut…
Tug 95e315e
Rename state properties to use snakeCase
Tug 238245c
Track user saving after manually editing
Tug da1dc42
change copy of Auto verify with Google to Auto-verify with Google
Tug 0e0307f
Revert to the default UI after save in every case
Tug 43b29e9
Display an helpful message when another admin tried to edit the HTML …
Tug 3daae34
Display the default text field for the google meta tag if user is dis…
Tug 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
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.
We should be using
componentDidMount()
to run side effects like this one.componentWillMount()
has been deprecated.