From b43fe10d92e9d786e729b2926cab2efcc76c8d69 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Sun, 10 Sep 2023 12:57:03 -0500 Subject: [PATCH] chore: update PULL_REQUEST_TEMPLATE.md (#107) * Update PULL_REQUEST_TEMPLATE.md * Update PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 52 +++++++++++++++++++++----------- 1 file changed, 35 insertions(+), 17 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index b8f8e49..98aedec 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -11,24 +11,42 @@ Before submitting your plugin, please ensure that you have followed the specific 5. `@example` (a nice example of how to use your plugin) 6. `@end` -## Plugin Submission Details - -**Description:** - -_[Please provide a brief description of your plugin here.]_ - -**Authors:** - -_[List the authors of the plugin along with their Discord IDs in the format `@username [<@discord_id>]`. You can add multiple authors in this manner.]_ - -**Version:** - -_[Specify the version number of your plugin.]_ - -**Example:** - -_[Provide an example of how your plugin can be used here.]_ +this is an example: +```js +/** + * @plugin + * filters autocomplete interaction that pass the criteria + * @author @jacoobes [<@182326315813306368>] + * @version 1.0.0 + * @example + * ```ts + * import { CommandType, commandModule } from "@sern/handler"; + * import { filterA } from '../plugins/filterA.js' + * export default commandModule({ + * type : CommandType.Slash, + * options: [ + * { + * autocomplete: true, + * command : { + * //only accept autocomplete interactions that include 'poo' in the text + * onEvent: [filterA(s => s.includes('poo'))], + * execute: (autocomplete) => { + * let data = [{ name: 'pooba', value: 'first' }, { name: 'pooga', value: 'second' }] + * autocomplete.respond(data) + * } + * } + * } + * ], + * execute: (ctx, args) => {} + * }) + * @end + */ + + +``` +## Plugin Submission Details +[Enter data here] this is optional ## Additional Notes _[Include any additional information or notes you'd like to provide regarding your plugin submission.]_