mattermost-plugin-cleanup-c.../plugin.json
Felipe M. 2ecbd2442d
Some checks failed
ci / test (push) Failing after 1m5s
ci / lint (push) Failing after 1m6s
ci / build (push) Failing after 1m6s
release / release (push) Failing after 50s
Add Mattermost plugin for system-admin channel cleanup.
Provide a channel header menu action and /cleanup-channel slash command so system administrators can remove all messages from a channel, with admin checks enforced on both the web app and server. Configure CI and release workflows for the Forgejo runner and signed plugin bundles.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-25 18:46:39 +02:00

26 lines
1,022 B
JSON

{
"id": "com.fmartingr.mattermost-plugin-cleanup-channel",
"name": "Cleanup Channel",
"description": "Allows system administrators to remove all messages from a channel via the channel menu or a slash command.",
"homepage_url": "https://github.com/fmartingr/mattermost-plugin-cleanup-channel",
"support_url": "https://github.com/fmartingr/mattermost-plugin-cleanup-channel/issues",
"icon_path": "assets/plugin-icon.svg",
"min_server_version": "6.2.1",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "",
"settings": []
}
}