= 82d1cdb204 Refactor: Replace Outlook integration with Entra ID federation
- Removed legacy Outlook integration, including views, controllers, and models.
- Introduced Microsoft Entra ID OAuth flows with enhanced permission checks and token management.
- Migrated database structure: replaced `outlook_tokens` table with `oauth_tokens` table for multi-provider support.
- Added comprehensive tests for Entra ID federation, including connection flow, token refresh, and permission checks.
- Standardized OAuth implementation using `EntraController` and consolidated token models into `OauthToken`.
2026-06-10 13:16:34 +00:00
..

All the forms used in the application are stored here.

Each form should validate the data before sending it to the server. This is done by using the validate method.

Validations that require the db, should not be live (realtime), they should be done on the only once, preferably after the form is submitted.

Forms should not be used to create, update or any database operation.

Livewire form docs: https://livewire.laravel.com/docs/4.x/forms