Add IUninstallable interface to enable custom module uninstallation logic #6559
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.
Overview
This PR adds a new
IUninstallable
interface that module developers can implement in their business controller classes to run custom code during module uninstallation. This is similar to how the existingIUpgradeable
interface allows custom code to run during installation or upgrade.Problem
Previously, there was no official way for module developers to run custom uninstall code. When uninstalling a module that had created content outside its standard file structure (e.g., custom folders, cache files), the only cleanup option was an uninstall SQL script. This left potentially orphaned files and folders in the file system.
Solution
The implementation includes:
IUninstallable
interface with a single method:The
deleteFiles
parameter is passed in from the uninstall UI screen, allowing module developers to know if the user requested file deletion.Modified the module uninstallation process to:
IUninstallable
UninstallModule
method if it existsExample Usage
Module developers can implement the interface like this:
Fixes #2160.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.