-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: SSO Environment Lost,issues 1183 (#1290)
* fix: Domain account synchronization backend execution and logic adjustment * close popups * fix: Generate Staff during Ldap login * fix: issues 1269、1237、1226 * fix:issuers 1183、1128 * fix: Environment lost
- Loading branch information
Showing
6 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...rvices/Masa.Auth.Service.Admin/Application/Sso/Commands/AddCustomLoginCommandValidator.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Copyright (c) MASA Stack All rights reserved. | ||
// Licensed under the Apache License. See LICENSE.txt in the project root for license information. | ||
|
||
namespace Masa.Auth.Service.Admin.Application.Sso.Commands; | ||
|
||
public class AddCustomLoginCommandValidator : AbstractValidator<AddCustomLoginCommand> | ||
{ | ||
public AddCustomLoginCommandValidator() => RuleFor(cmd => cmd.CustomLogin).SetValidator(new AddCustomLoginValidator()); | ||
} |
9 changes: 9 additions & 0 deletions
9
...ces/Masa.Auth.Service.Admin/Application/Sso/Commands/UpdateCustomLoginCommandValidator.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Copyright (c) MASA Stack All rights reserved. | ||
// Licensed under the Apache License. See LICENSE.txt in the project root for license information. | ||
|
||
namespace Masa.Auth.Service.Admin.Application.Sso.Commands; | ||
|
||
public class UpdateCustomLoginCommandValidator : AbstractValidator<UpdateCustomLoginCommand> | ||
{ | ||
public UpdateCustomLoginCommandValidator() => RuleFor(cmd => cmd.CustomLogin).SetValidator(new UpdateCustomLoginValidator()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters