Skip to content

Commit

Permalink
fix: tenant not tetant
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberdev-tech committed Feb 7, 2025
1 parent 0f15c89 commit a3eb7cd
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions app/Extensions/OAuth/Providers/AzureProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
use Filament\Forms\Components\TextInput;
use SocialiteProviders\Azure\Provider;



final class AzureProvider extends OAuthProvider
{
public function getId(): string
Expand All @@ -33,8 +31,8 @@ public function getSettingsForm(): array
{
return array_merge(parent::getSettingsForm(), [
TextInput::make('OAUTH_AZURE_REDIRECT_URI')
->label('Redirect URL')
->placeholder('Redirect URL')
->label('Authorization URL')
->placeholder('Authorization URL')
->columnSpan(2)
->required()
->url()
Expand All @@ -52,8 +50,8 @@ public function getSettingsForm(): array
->required()
->hex(),
TextInput::make("OAUTH_AZURE_TENANT_ID")
->label('Tentant ID')
->placeholder('Tentant ID')
->label('Tenant ID')
->placeholder('Tenant ID')
->columnSpan(2)
->required()
->password()
Expand Down

0 comments on commit a3eb7cd

Please sign in to comment.