Skip to content

impl: add support for disabling CLI signature verification #564

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

Merged
merged 8 commits into from
Jul 30, 2025
Prev Previous commit
Next Next commit
impl: hide configurable fallback if signature verification is disabled
The main plugin screen has a quick shortcut for setting whether the user
wants to fallback on releases.coder.com for signatures if they are not provided by
the main deployment. This checkbox should not be visible if the user wants to disable
signature verification altogether.
  • Loading branch information
fioan89 committed Jul 29, 2025
commit 9e8e0073bac65f394f047067ffaa7cd61ddb11c6
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ class CoderWorkspacesStepView :
CoderGatewayBundle.message("gateway.connector.settings.fallback-on-coder-for-signatures.comment"),
)

}.layout(RowLayout.PARENT_GRID)
}.visible(state.disableSignatureVerification.not()).layout(RowLayout.PARENT_GRID)
row {
scrollCell(
toolbar.createPanel().apply {
Expand Down