Get everything working

This commit is contained in:
Gregory Schier
2025-12-28 15:01:15 -08:00
parent 7446d62e39
commit 3c45464e34
11 changed files with 51 additions and 90 deletions

View File

@@ -22,45 +22,6 @@ export const plugin: PluginDefinition = {
},
},
],
websocketRequestActions: [
{
label: 'Test WebSocket Action',
icon: 'bug',
async onSelect(ctx, args) {
await ctx.toast.show({
message: `WebSocket action called for: ${args.websocketRequest.name}`,
icon: 'bug',
color: 'info',
});
},
},
],
workspaceActions: [
{
label: 'Test Workspace Action',
icon: 'bug',
async onSelect(ctx, args) {
await ctx.toast.show({
message: `Workspace action called for: ${args.workspace.name}`,
icon: 'bug',
color: 'info',
});
},
},
],
folderActions: [
{
label: 'Test Folder Action',
icon: 'bug',
async onSelect(ctx, args) {
await ctx.toast.show({
message: `Folder action called for: ${args.folder.name}`,
icon: 'bug',
color: 'info',
});
},
},
],
};
export async function convertToCurl(request: Partial<HttpRequest>) {