Browse Source

Merge pull request #14419 from abpframework/salihozkara/template

Fix variable name
pull/14433/head
Engincan VESKE 3 years ago
committed by GitHub
parent
commit
18b7eb05c8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/Pages/Index.cshtml.cs

4
templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/Pages/Index.cshtml.cs

@ -19,9 +19,9 @@ public class IndexModel : AbpPageModel
protected ILanguageProvider LanguageProvider { get; }
public IndexModel(IOpenIddictApplicationRepository openIdApplicationmRepository, ILanguageProvider languageProvider)
public IndexModel(IOpenIddictApplicationRepository openIdApplicationRepository, ILanguageProvider languageProvider)
{
OpenIdApplicationRepository = openIdApplicationmRepository;
OpenIdApplicationRepository = openIdApplicationRepository;
LanguageProvider = languageProvider;
}

Loading…
Cancel
Save