Skip to content

Commit eecebc7

Browse files
authored
Merge pull request #528 from mattermost/add_mattermost-plugin-wrangler_v1.0.0
Add v1.0.0 of mattermost-plugin-wrangler to the Marketplace
2 parents 0c5a740 + 2112bf8 commit eecebc7

File tree

1 file changed

+189
-0
lines changed

1 file changed

+189
-0
lines changed

plugins.json

Lines changed: 189 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36326,6 +36326,195 @@
3632636326
},
3632736327
"updated_at": "2025-01-10T13:57:06.235812976Z"
3632836328
},
36329+
{
36330+
"homepage_url": "https://github.com/mattermost/mattermost-plugin-wrangler",
36331+
"icon_data": "",
36332+
"download_url": "https://plugins.releases.mattermost.com/release/mattermost-plugin-wrangler-v1.0.0.tar.gz",
36333+
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-wrangler/releases/tag/v1.0.0",
36334+
"hosting": "",
36335+
"author_type": "mattermost",
36336+
"release_stage": "production",
36337+
"enterprise": false,
36338+
"signature": "iQIzBAABCAAdFiEExViBuA9p6GO4WtXR0bVLR6XO/sQFAmnGiAoACgkQ0bVLR6XO/sRVSRAAg1ZrTEdyA8RMBAYucLcUFRN8W/jK9UNGQFjJnh65I0SvrlN/d/H9ejUZzPU8AChTdX3iRSnnNfgi7CcGOr+D95T6kK3wwdqVbnPItTgEah2NGo8dv3a8eXK+ek3mxiJd4MqXez5dmWMyYaX9VQDAnDz3br29sDFWJBX+F4+JuAspyHg9d8gHvLOEfYtelKeawyIp3CyjnscLHfAjSpFSezs9yUXOPm6g6z0YhyqvHnuQzJ3ibJyRFArqaoT0vh3HJol3lttk7+eakbMvhv2gF9nYVyGjB0iHgEn5NCO1fD/JdOcabbVmhznhaEEEgBOhfC279GRfXE7zuwD9vPa4noIXDtGt8Uht/3/dNGwYISSZCrJ7DZUnZ7yMoUGrKg5wjk/+aAxHBgm2LZrIOKutT6ZIiJmjPhRCH304cJg/CBqh1CWxQ2UFlHVFqPPtl2MeJWWa9drCdmxeLxYqnDyzK3JFnybHjlz2iLGevlaG0pJPqduXCmKe4u7Lgl/9ndokZfvvAKJN7Ej0COO/p1po+QDBRcQ7jhwFKRpbDwq1eaCKTOIfocYCvawhRvtST5FGYvyB66zPsvlmgG6oYLb2lm1dswSG2Cb8fBs966E/xPQhsBkg6CiJcuAzju7tDzjp1aEa0QQYiNqyT+Ge9m3e02mnecE8VPd72VJIttXk9tQ=",
36339+
"repo_name": "mattermost-plugin-wrangler",
36340+
"manifest": {
36341+
"id": "com.mattermost.wrangler",
36342+
"name": "Wrangler",
36343+
"description": "Manage messages across teams and channels",
36344+
"version": "1.0.0",
36345+
"min_server_version": "10.11.0",
36346+
"server": {
36347+
"executables": {
36348+
"darwin-amd64": "server/dist/plugin-darwin-amd64",
36349+
"darwin-arm64": "server/dist/plugin-darwin-arm64",
36350+
"freebsd-amd64": "server/dist/plugin-freebsd-amd64",
36351+
"linux-amd64": "server/dist/plugin-linux-amd64",
36352+
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
36353+
},
36354+
"executable": ""
36355+
},
36356+
"webapp": {
36357+
"bundle_path": "webapp/dist/main.js"
36358+
},
36359+
"settings_schema": {
36360+
"header": "",
36361+
"footer": "",
36362+
"settings": [
36363+
{
36364+
"key": "PermittedWranglerUsers",
36365+
"display_name": "Permitted Wrangler Users",
36366+
"type": "dropdown",
36367+
"help_text": "Choose who is allowed to use the Wrangler plugin. (Other permissions below still apply)",
36368+
"placeholder": "",
36369+
"default": "system-admins",
36370+
"options": [
36371+
{
36372+
"display_name": "System administrators only",
36373+
"value": "system-admins"
36374+
},
36375+
{
36376+
"display_name": "System administrators and users from the 'Allowed Email Domain' list",
36377+
"value": "system-admins-and-email-domain"
36378+
},
36379+
{
36380+
"display_name": "All users",
36381+
"value": "all-users"
36382+
}
36383+
],
36384+
"hosting": "",
36385+
"secret": false
36386+
},
36387+
{
36388+
"key": "AllowedEmailDomain",
36389+
"display_name": "Allowed Email Domain",
36390+
"type": "text",
36391+
"help_text": "(Optional) When set, users must have an email ending in this domain to use Wrangler. Multiple domains can be specified by separating them with commas. This also supports full email address matching if you want to limit plugin usage to specific users.",
36392+
"placeholder": "",
36393+
"default": null,
36394+
"hosting": "",
36395+
"secret": false
36396+
},
36397+
{
36398+
"key": "EnableWebUI",
36399+
"display_name": "Enable Wrangler webapp functionality [BETA]",
36400+
"type": "bool",
36401+
"help_text": "Enable the work-in-progress Wrangler webapp functionality.",
36402+
"placeholder": "",
36403+
"default": false,
36404+
"hosting": "",
36405+
"secret": false
36406+
},
36407+
{
36408+
"key": "CommandAutoCompleteEnable",
36409+
"display_name": "Enable Wrangler Command AutoComplete",
36410+
"type": "bool",
36411+
"help_text": "Control whether command autocomplete is enabled or not. If enabled and Allowed Email Domain is set, then some users will be able to see the Wrangler commands, but will be unable to run them.",
36412+
"placeholder": "",
36413+
"default": false,
36414+
"hosting": "",
36415+
"secret": false
36416+
},
36417+
{
36418+
"key": "MoveThreadMaxCount",
36419+
"display_name": "Max Thread Count Move Size",
36420+
"type": "text",
36421+
"help_text": "The maximum number of messages in a thread that the plugin is allowed to move. Leave empty for unlimited messages.",
36422+
"placeholder": "",
36423+
"default": null,
36424+
"hosting": "",
36425+
"secret": false
36426+
},
36427+
{
36428+
"key": "MoveThreadToAnotherTeamEnable",
36429+
"display_name": "Enable Moving Threads To Different Teams",
36430+
"type": "bool",
36431+
"help_text": "Control whether Wrangler is permitted to move message threads from one team to another or not.",
36432+
"placeholder": "",
36433+
"default": false,
36434+
"hosting": "",
36435+
"secret": false
36436+
},
36437+
{
36438+
"key": "MoveThreadFromPrivateChannelEnable",
36439+
"display_name": "Enable Moving Threads From Private Channels",
36440+
"type": "bool",
36441+
"help_text": "Control whether Wrangler is permitted to move message threads from private channels or not.",
36442+
"placeholder": "",
36443+
"default": false,
36444+
"hosting": "",
36445+
"secret": false
36446+
},
36447+
{
36448+
"key": "MoveThreadFromDirectMessageChannelEnable",
36449+
"display_name": "Enable Moving Threads From Direct Message Channels",
36450+
"type": "bool",
36451+
"help_text": "Control whether Wrangler is permitted to move message threads from direct message channels or not.",
36452+
"placeholder": "",
36453+
"default": false,
36454+
"hosting": "",
36455+
"secret": false
36456+
},
36457+
{
36458+
"key": "MoveThreadFromGroupMessageChannelEnable",
36459+
"display_name": "Enable Moving Threads From Group Message Channels",
36460+
"type": "bool",
36461+
"help_text": "Control whether Wrangler is permitted to move message threads from group message channels or not.",
36462+
"placeholder": "",
36463+
"default": false,
36464+
"hosting": "",
36465+
"secret": false
36466+
},
36467+
{
36468+
"key": "MergeThreadEnable",
36469+
"display_name": "Enable Merging Threads [BETA]",
36470+
"type": "bool",
36471+
"help_text": "Control whether Wrangler is permitted to merge message threads. Depending on other plugin settings these threads can be merged across channels and teams. Note that message timestamps are preserved when threads are merged which could result in unexpected or confusing message ordering.",
36472+
"placeholder": "",
36473+
"default": false,
36474+
"hosting": "",
36475+
"secret": false
36476+
},
36477+
{
36478+
"key": "ThreadAttachMessage",
36479+
"display_name": "Info-Message: Attached a Message",
36480+
"type": "text",
36481+
"help_text": "The message being sent to the user after attaching his message to a thread. Allowed variables: {executor}, {postLink}",
36482+
"placeholder": "",
36483+
"default": "@{executor} wrangled one of your messages into a thread for you: {postLink}",
36484+
"hosting": "",
36485+
"secret": false
36486+
},
36487+
{
36488+
"key": "MoveThreadMessage",
36489+
"display_name": "Info-Message: Moved a Thread",
36490+
"type": "text",
36491+
"help_text": "The message being sent to the user after moving a thread. Allowed variables: {executor}, {postLink}",
36492+
"placeholder": "",
36493+
"default": "@{executor} wrangled a thread you started to a new channel for you: {postLink}",
36494+
"hosting": "",
36495+
"secret": false
36496+
},
36497+
{
36498+
"key": "CopyThreadMessage",
36499+
"display_name": "Info-Message: Copied a Thread",
36500+
"type": "text",
36501+
"help_text": "The message being sent to the user after copying a message. Allowed variables: {executor}, {postLink}",
36502+
"placeholder": "",
36503+
"default": "@{executor} copied a thread you started to a new channel for you: {postLink}",
36504+
"hosting": "",
36505+
"secret": false
36506+
}
36507+
],
36508+
"sections": null
36509+
}
36510+
},
36511+
"platforms": {
36512+
"linux-amd64": {},
36513+
"darwin-amd64": {},
36514+
"windows-amd64": {}
36515+
},
36516+
"updated_at": "2026-03-27T13:39:59.021924Z"
36517+
},
3632936518
{
3633036519
"homepage_url": "https://github.com/mattermost/mattermost-plugin-github",
3633136520
"icon_data": "data:image/svg+xml;base64,PHN2ZyByb2xlPSJpbWciIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+R2l0SHViIGljb248L3RpdGxlPjxwYXRoIGQ9Ik0xMiAuMjk3Yy02LjYzIDAtMTIgNS4zNzMtMTIgMTIgMCA1LjMwMyAzLjQzOCA5LjggOC4yMDUgMTEuMzg1LjYuMTEzLjgyLS4yNTguODItLjU3NyAwLS4yODUtLjAxLTEuMDQtLjAxNS0yLjA0LTMuMzM4LjcyNC00LjA0Mi0xLjYxLTQuMDQyLTEuNjFDNC40MjIgMTguMDcgMy42MzMgMTcuNyAzLjYzMyAxNy43Yy0xLjA4Ny0uNzQ0LjA4NC0uNzI5LjA4NC0uNzI5IDEuMjA1LjA4NCAxLjgzOCAxLjIzNiAxLjgzOCAxLjIzNiAxLjA3IDEuODM1IDIuODA5IDEuMzA1IDMuNDk1Ljk5OC4xMDgtLjc3Ni40MTctMS4zMDUuNzYtMS42MDUtMi42NjUtLjMtNS40NjYtMS4zMzItNS40NjYtNS45MyAwLTEuMzEuNDY1LTIuMzggMS4yMzUtMy4yMi0uMTM1LS4zMDMtLjU0LTEuNTIzLjEwNS0zLjE3NiAwIDAgMS4wMDUtLjMyMiAzLjMgMS4yMy45Ni0uMjY3IDEuOTgtLjM5OSAzLS40MDUgMS4wMi4wMDYgMi4wNC4xMzggMyAuNDA1IDIuMjgtMS41NTIgMy4yODUtMS4yMyAzLjI4NS0xLjIzLjY0NSAxLjY1My4yNCAyLjg3My4xMiAzLjE3Ni43NjUuODQgMS4yMyAxLjkxIDEuMjMgMy4yMiAwIDQuNjEtMi44MDUgNS42MjUtNS40NzUgNS45Mi40Mi4zNi44MSAxLjA5Ni44MSAyLjIyIDAgMS42MDYtLjAxNSAyLjg5Ni0uMDE1IDMuMjg2IDAgLjMxNS4yMS42OS44MjUuNTdDMjAuNTY1IDIyLjA5MiAyNCAxNy41OTIgMjQgMTIuMjk3YzAtNi42MjctNS4zNzMtMTItMTItMTIiLz48L3N2Zz4=",

0 commit comments

Comments
 (0)