feat(pipectl): add application enable command#7040
Open
Ahmad-Faraj wants to merge 1 commit into
Open
Conversation
Ahmad-Faraj
requested review from
Warashi,
khanhtc1202,
mohammedfirdouss and
t-kikuc
July 16, 2026 13:45
There was a problem hiding this comment.
Pull request overview
Adds pipectl application enable to let users re-enable applications from the CLI (using the existing EnableApplication API), removing the need to use the web UI for this workflow.
Changes:
- Add a new
application enablesubcommand that callsapiservice.EnableApplication. - Register the new subcommand under
pipectl application. - Document the new command in the CLI user guide.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pkg/app/pipectl/cmd/application/enable.go | Adds the new enable subcommand implementation calling EnableApplication. |
| pkg/app/pipectl/cmd/application/application.go | Registers newEnableCommand under the application command. |
| docs/content/en/docs-dev/user-guide/command-line-tool.md | Documents usage of pipectl application enable. |
Signed-off-by: Ahmad Faraj <ahmedfrag4040@gmail.com>
Ahmad-Faraj
force-pushed
the
feat/pipectl-application-enable
branch
from
July 16, 2026 14:03
64f4057 to
41f1086
Compare
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 this PR does:
Adds an
application enablecommand to pipectl.Why we need it:
An application disabled with pipectl can only be enabled back from the web UI. The API already has
EnableApplication, only the CLI command was missing.Which issue(s) this PR fixes:
None
Does this PR introduce a user-facing change?:
pipectl application enableis available to enable a disabled application.