Plugins
Feedback
Allow users to submit feedback about your application
The Feedback plugin allows users to submit feedback about your application. By default, only authenticated users can submit feedback, but this can be configured.
What does it do?
The Feedback plugin provides a way for users to submit feedback about your application. It stores:
- The feedback text (with configurable min/max length)
- The ID of the user who submitted the feedback (optional if requireAuth is false)
- The timestamp when the feedback was submitted
This allows you to collect user feedback directly within your application, without requiring external tools or services.
Configuration Options
You can customize the Feedback plugin with the following options:
Schema
Table: feedback
Field Name | Type | Key | Description |
---|---|---|---|
id | string | - | Unique identifier for the feedback entry |
userId | string | - | ID of the user who submitted the feedback (optional if requireAuth is false) |
text | string | - | The feedback content (controlled by minLength/maxLength) |
createdAt | date | - | Timestamp when the feedback was submitted |
Shoutout
This plugin was built by @zpg6. ❤️