-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User identity #2
base: master
Are you sure you want to change the base?
Conversation
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.10"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.UI
Зачем?
|
||
namespace Argon.Api.Common.Models; | ||
|
||
public class ApplicationUser : IdentityUser<Guid> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AspNetCore.Identity не научился в рекорды?
public class ApplicationUser : IdentityUser<Guid> | ||
{ | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public class ApplicationUser : IdentityUser<Guid> | |
{ | |
} | |
public class ApplicationUser : IdentityUser<Guid>; |
{ | ||
public Task SendConfirmationLinkAsync(ApplicationUser user, string email, string confirmationLink) | ||
{ | ||
logger.LogInformation( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
реализация
src/Argon.Api/Program.cs
Outdated
options.ClusterId = nameof(Api); | ||
options.ServiceId = nameof(Api); | ||
}); | ||
siloBuilder.ConfigureEndpoints(11111, 30000, listenOnAnyHostAddress: true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
я бы все таки в конфигурацию вынес эти порты
builder.Services.AddCors(options => | ||
{ | ||
options.AddDefaultPolicy( | ||
policy => { policy.AllowAnyHeader().AllowAnyMethod().AllowAnyOrigin(); }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
в конфигурацию
src/Argon.Grains/Class1.cs
Outdated
@@ -0,0 +1,5 @@ | |||
namespace Argon.Grains; | |||
|
|||
public class Class1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
зачем это?
src/Argon.Orleans.Client/Class1.cs
Outdated
@@ -0,0 +1,5 @@ | |||
namespace Argon.Orleans.Client; | |||
|
|||
public class Class1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
тоже самое
@@ -0,0 +1,18 @@ | |||
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
зачем тут клиент васма
No description provided.