Skip to content

Commit

Permalink
Infrastructure Preparation 46
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Dec 6, 2023
1 parent 633b9be commit 2d76678
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,14 @@
"CookieExpires": 30
},
"Authenticator": {
"ProviderDisplay": "Vegalya LLC",
"CookieDomain": ".vegalya.com",
"ProviderName": "Vegalya",
"CookieName": "Factorial",
"CookieValueLength": 90,
"ProviderKeyLength": 36,
"CookieValueSplit": "-",
"ProviderKeySplit": "-",
"CookieExpires": 30
},
"Antiforgery": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Taiizor.Starterkit" Version="1.1.3.8" />
<PackageReference Include="Taiizor.Starterkit" Version="1.1.3.9" />
</ItemGroup>

</Project>
8 changes: 8 additions & 0 deletions src/Taiizor.Starterkit/Extension/ThemeAuthenticator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@ public class ThemeAuthenticator

public string CookieName { get; set; }

public string ProviderName { get; set; }

public string CookieDomain { get; set; }

public int CookieValueLength { get; set; }

public int ProviderKeyLength { get; set; }

public string ProviderDisplay { get; set; }

public string ProviderKeySplit { get; set; }

public string CookieValueSplit { get; set; }
}
}
4 changes: 4 additions & 0 deletions src/Taiizor.Starterkit/Resources/FactorySettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,14 @@
"CookieExpires": 30
},
"Authenticator": {
"ProviderDisplay": "Vegalya LLC",
"CookieDomain": ".vegalya.com",
"ProviderName": "Vegalya",
"CookieName": "Factorial",
"CookieValueLength": 90,
"ProviderKeyLength": 36,
"CookieValueSplit": "-",
"ProviderKeySplit": "-",
"CookieExpires": 30
},
"Antiforgery": {
Expand Down
2 changes: 1 addition & 1 deletion src/Taiizor.Starterkit/Taiizor.Starterkit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<PropertyGroup>
<ApplicationIcon>Resources\Taiizor.Starterkit.ico</ApplicationIcon>
<Version>1.1.3.9</Version>
<Version>1.1.4.1</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>Taiizor.Starterkit</Title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Taiizor.Starterkit" Version="1.1.3.8" />
<PackageReference Include="Taiizor.Starterkit" Version="1.1.3.9" />
</ItemGroup>

</Project>

0 comments on commit 2d76678

Please sign in to comment.