singleloginsystem/app/Data/Application/ClientCredentialsData.php
= 0b77f69818 Feat: Add modular OIDC app creation with logo support
- Introduced new components and services for OIDC app creation, enabling dynamic handling of app types, URIs, and user roles.
- Added support for uploading and managing logos for connected apps.
- Implemented `ClientCreationFactory` and related factories for modular OIDC client generation.
- Updated UI to enhance app creation flow with post-creation credential display and improved validations.
- Refactored backend with `OidcService` for streamlined OIDC app creation and management.
2026-06-18 13:35:23 +00:00

19 lines
383 B
PHP

<?php
declare(strict_types=1);
namespace App\Data\Application;
use Spatie\LaravelData\Data;
final class ClientCredentialsData extends Data
{
public function __construct(
public string $clientId,
public string $grantType,
public ?string $clientSecret = null,
public ?array $redirectUris = null,
public ?array $scopes = null,
) {}
}