Browse Source
Merge pull request #14419 from abpframework/salihozkara/template
Fix variable name
pull/14433/head
Engincan VESKE
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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; |
|
|
|
} |
|
|
|
|
|
|
|
|