Skip to content

Commit cd7c1b8

Browse files
authored
Merge pull request #1 from pbros/dev
Merge from Dev
2 parents 2267158 + 9cfc278 commit cd7c1b8

File tree

131 files changed

+7327
-942
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+7327
-942
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Migrations are not a part of the repository - they are ignored in `.gitignore`.
164164

165165
- STS:
166166

167-
- `Skoruba.IdentityServer4.STS.Identity` - [Quickstart UI for the IdentityServer4 with Asp.Net Core Identity and EF Core storage](https://github.com/IdentityServer/IdentityServer4.Samples/tree/master/Quickstarts/Combined_AspId_and_EFStorage)
167+
- `Skoruba.IdentityServer4.STS.Identity` - project that contains the instance of IdentityServer4 and combine these samples - [Quickstart UI for the IdentityServer4 with Asp.Net Core Identity and EF Core storage](https://github.com/IdentityServer/IdentityServer4.Samples/tree/master/Quickstarts/Combined_AspId_and_EFStorage) and [damienbod - IdentityServer4 and Identity template](https://github.com/damienbod/IdentityServer4AspNetCoreIdentityTemplate)
168168

169169
- Admin UI:
170170

@@ -225,12 +225,14 @@ It is possible to define the configuration according the client type - by defaul
225225
- Api Scopes
226226
- Api Scope Claims
227227
- Api Secrets
228+
- Api Properties
228229

229230
**Identity Resources**
230231

231232
- Actions: Add, Update, Remove
232233
- Entities:
233234
- Identity Claims
235+
- Identity Properties
234236

235237
## Asp.Net Core Identity
236238

@@ -266,15 +268,17 @@ It is possible to define the configuration according the client type - by defaul
266268
- [x] English
267269
- [x] Chinese
268270
- [x] Russian
271+
- [x] Manage profile
272+
- [x] Password reset
273+
- [x] Account linking
274+
- [x] Two-Factor Authentication (2FA)
275+
- [ ] User registration
269276

270277
### 1.1.0:
271278

272279
- [ ] Add audit logs to track changes ([#61](https://github.com/skoruba/IdentityServer4.Admin/issues/61))
273280
- [ ] Create a project template using dotnet CLI - `dotnet new template`
274281
- [ ] Second template: The administration of the IdentityServer4 (without Asp.Net Core Identity) ([#79](https://github.com/skoruba/IdentityServer4.Admin/issues/79))
275-
- [ ] User registration / Password reset
276-
- [ ] Account linking
277-
- [ ] Manage profile
278282

279283
### 2.0.0:
280284

src/Skoruba.IdentityServer4.Admin.EntityFramework.Identity/Entities/Identity/UserIdentityRole.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Skoruba.IdentityServer4.Admin.EntityFramework.Identity.Entities.Identity
44
{
5-
public class UserIdentityRole : IdentityRole<string>
5+
public class UserIdentityRole : IdentityRole
66
{
77

88
}

0 commit comments

Comments
 (0)