docs(sage50): remove support-enablement steps from the restart page - #1886
Merged
Conversation
The Restart connector link is available to every Sage 50 Accounts Connector user — nothing in connector-sage50, connector-sdk or sage50-service gates it on the per-connector allowRestart setting any more. Remove the "Enable the restart connector link" section and the connector ID steps, and keep the instructions for using the link. EXP-321 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
Link check results: |
|
pmckinney-codat
marked this pull request as ready for review
August 17, 2026 13:15
pmckinney-codat
enabled auto-merge
August 17, 2026 13:15
brucepouncey
approved these changes
Aug 17, 2026
pmckinney-codat
disabled auto-merge
August 17, 2026 13:34
pmckinney-codat
enabled auto-merge
August 17, 2026 13:34
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What
Rewrites the Sage 50 restart page so it just explains how to restart the connector. The Enable the restart connector link section (get the connector ID from your user → raise a support ticket → Support enables it) is gone, along with the connector-ID screenshot.
Why
The page told customers the Restart connector link is "disabled by default" and has to be turned on per-connector by Codat Support. That's no longer true in the code:
Codat.Connector.UI.WPF/Overlays.xamlbinds the hyperlink straight toRestartConnectorCommandwith no visibility or enablement condition, andAboutConnectorViewModelhas no gate either.connector-sage50never reads the per-connectorallowRestartsetting; its only feature gating (IFeatureServiceStorage, fed byEnabledFeatureson the pending-actions poll) is used for an invoice push feature.sage50-servicestill stores and serves theallowRestartsetting (connectorSettingstable, partitionsage50), but nothing in it branches on the value.RestartRequestedon pending-actions comes from theconnectors-apiremoteRestartsendpoint — that's the admin-triggered remote restart, not this toggle.So the toggle only survived in the docs and some stale table rows. The original ask (Feb 2023) was that publicly documenting a support-enabled restart made the connector look unreliable.
Acceptance criteria
Checks
prettier --checkon the changed file: cleancspellon the changed file: clean🤖 Generated with Claude Code