Skip to content

Commit

Permalink
Revert "Merge branch 'dev' into active-ui"
Browse files Browse the repository at this point in the history
This reverts commit 6ffec95, reversing
changes made to 915f0cc.
  • Loading branch information
mehmet-erim committed Oct 7, 2021
1 parent ae58e39 commit 9bc4500
Show file tree
Hide file tree
Showing 13 changed files with 957 additions and 1,257 deletions.
277 changes: 0 additions & 277 deletions docs/en/Blog-Posts/2021-10-05 v5_0_Beta1/POST.md

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Button Color="@Color" Clicked="@Clicked" Disabled="@Disabled">
@if (Icon != null)
{
<Icon Name="Icon" Class="mr-1"></Icon>
<Icon Name="IconName.Add" Class="mr-1"></Icon>
}
@Text
</Button>
1,926 changes: 956 additions & 970 deletions npm/ng-packs/packages/identity/proxy/src/lib/proxy/generate-proxy.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export interface IdentityUserCreateOrUpdateDtoBase extends ExtensibleObject {
surname?: string;
email: string;
phoneNumber?: string;
isActive: boolean;
lockoutEnabled: boolean;
roleNames: string[];
}
Expand All @@ -58,7 +57,6 @@ export interface IdentityUserDto extends ExtensibleFullAuditedEntityDto<string>
emailConfirmed: boolean;
phoneNumber?: string;
phoneNumberConfirmed: boolean;
isActive: boolean;
lockoutEnabled: boolean;
lockoutEnd?: string;
concurrencyStamp?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,6 @@ export const DEFAULT_USERS_CREATE_FORM_PROPS = FormProp.createMany<IdentityUserD
id: 'phone-number',
validators: () => [Validators.maxLength(16)],
},
{
type: ePropType.Boolean,
name: 'isActive',
displayName: 'AbpIdentity::DisplayName:IsActive',
id: 'active-checkbox',
defaultValue: true,
},
{
type: ePropType.Boolean,
name: 'lockoutEnabled',
Expand Down

0 comments on commit 9bc4500

Please sign in to comment.