Lumi/knowledge/plugins/auto-vc.md
2026-07-17 22:10:00 +02:00

84 lines
3.9 KiB
Markdown

---
id: plugin.auto-vc
title: Auto VC
scope: plugins
status: active
priority: 10
visibility: user
category: Plugin
tags: plugin, auto-vc
generated: true
editable: false
---
# Auto VC
Auto-create managed voice channels from lobby rooms.
## Metadata
Plugin ID: auto-vc
Version: 0.1.5
Default state: enabled
## Web Routes
- /plugins/auto-vc
- GET /plugins/auto-vc
- POST /plugins/auto-vc/settings
- POST /plugins/auto-vc/settings/remove
- POST /plugins/auto-vc/bans
- POST /plugins/auto-vc/unban
## Route Reference
### MOUNT /plugins/auto-vc
- Purpose: Mounts the plugin router at this base WebUI path.
- Inputs: No request parameters detected by static analysis.
- Response format: Plugin router mount point.
- Access: Access is controlled by the mount options and individual plugin routes.
- Side effects: No direct route action; child routes handle requests.
- Limits/notes: Mount metadata is inferred from static source scanning.
### GET /plugins/auto-vc
- Purpose: Renders or serves the auto-vc plugin page.
- Inputs: No request parameters detected by static analysis.
- Response format: plain or HTML response
- Access: admin access expected; moderator access may be required; logged-in session required or used
- Side effects: Usually read-only.
- Limits/notes: Generated from static route source analysis; confirm exact behavior in the handler before changing integrations.
### POST /plugins/auto-vc/settings
- Purpose: Processes the auto-vc plugin action for settings.
- Inputs: No request parameters detected by static analysis.
- Response format: Form/action response; exact format was not detected statically.
- Access: No explicit access guard detected in the route handler; check surrounding router/mount middleware.
- Side effects: writes or mutates server-side state
- Limits/notes: Generated from static route source analysis; confirm exact behavior in the handler before changing integrations. Most non-API POST routes are browser form submissions and usually redirect after completion.
### POST /plugins/auto-vc/settings/remove
- Purpose: Processes the auto-vc plugin action for settings remove.
- Inputs: No request parameters detected by static analysis.
- Response format: Form/action response; exact format was not detected statically.
- Access: No explicit access guard detected in the route handler; check surrounding router/mount middleware.
- Side effects: writes or mutates server-side state
- Limits/notes: Generated from static route source analysis; confirm exact behavior in the handler before changing integrations. Most non-API POST routes are browser form submissions and usually redirect after completion.
### POST /plugins/auto-vc/bans
- Purpose: Processes the auto-vc plugin action for bans.
- Inputs: body: `ban_input`, `ban_reason`
- Response format: HTTP redirect after handling the request
- Access: admin access expected; moderator access may be required; logged-in session required or used
- Side effects: Consumes submitted data; state mutation happens in called helpers if present.
- Limits/notes: Generated from static route source analysis; confirm exact behavior in the handler before changing integrations. Most non-API POST routes are browser form submissions and usually redirect after completion.
### POST /plugins/auto-vc/unban
- Purpose: Processes the auto-vc plugin action for unban.
- Inputs: body: `unban_ids`
- Response format: HTTP redirect after handling the request
- Access: admin access expected; moderator access may be required; logged-in session required or used
- Side effects: Consumes submitted data; state mutation happens in called helpers if present.
- Limits/notes: Generated from static route source analysis; confirm exact behavior in the handler before changing integrations. Most non-API POST routes are browser form submissions and usually redirect after completion.
## Commands
- No plugin command triggers detected.
## Source
Plugin folder: plugins/auto-vc