Files
opnform-host-nginx/client
Chirag Chhatrala 7365479c83 Email spam security (#641)
* Add hCaptcha on register page

* register page captcha test cases

* Refactor integration validation rules to include form context

- Updated the `getValidationRules` method in various integration handlers (Discord, Email, Google Sheets, Slack, Webhook, Zapier) to accept an optional `Form` parameter, allowing for context-aware validation.
- Enhanced the `EmailIntegration` handler to enforce restrictions based on user plans, ensuring free users can only create one email integration per form and can only send to a single email address.
- Added a new test suite for `EmailIntegration` to validate the new restrictions and ensure proper functionality for both free and pro users.
- Introduced loading state management in the `IntegrationModal` component to improve user experience during save operations.

These changes improve the flexibility and user experience of form integrations, particularly for email handling.

* for self-hosted ignore emil validation for spam

* fix pint

* ignore register throttle for testing env

* support new migration for mysql also

* Register page captcha enable if captcha key set

* fix test case

* fix test case

* fix test case

* fix pint

* Refactor RegisterController middleware and update TestCase setup

- Removed environment check for throttling middleware in RegisterController, ensuring consistent rate limiting for the registration endpoint.
- Updated TestCase to disable throttle middleware during tests, allowing for more flexible testing scenarios without rate limiting interference.

* Enhance hCaptcha integration in tests and configuration

- Added hCaptcha site and secret keys to phpunit.xml for testing purposes.
- Updated RegisterTest to configure hCaptcha secret key dynamically, ensuring proper token validation in production environment.

These changes improve the testing setup for hCaptcha, facilitating more accurate simulation of production conditions.

---------

Co-authored-by: Julien Nahum <julien@nahum.net>
2024-12-18 13:16:27 +01:00
..
2024-12-18 13:16:27 +01:00
2024-12-04 18:32:14 +01:00
2024-12-18 13:07:19 +01:00
2024-04-15 19:39:03 +02:00
2024-12-18 13:07:19 +01:00
2024-09-23 20:02:38 +02:00
2024-12-04 18:32:14 +01:00
2024-08-27 16:49:43 +02:00
2024-09-02 15:33:17 +02:00
2024-10-23 10:34:51 +02:00
2024-04-15 19:39:03 +02:00
2024-10-23 10:34:51 +02:00
2024-08-05 12:06:20 +02:00
2024-08-27 16:49:43 +02:00
2024-08-27 16:49:43 +02:00
2024-09-23 20:02:38 +02:00
2024-11-21 16:14:27 +01:00
2024-06-18 12:31:17 +02:00
2024-06-06 18:03:41 +02:00
2024-09-02 15:33:17 +02:00
2024-12-04 18:32:14 +01:00
2024-12-04 18:32:14 +01:00
2023-12-09 15:47:03 +01:00
2024-08-27 16:49:43 +02:00
2024-04-15 19:39:03 +02:00
2024-11-21 16:14:27 +01:00
2023-12-09 15:47:03 +01:00

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.