[Fixes #245] Update Identity to use the default layout from the application.
Added /Areas/Identity/Pages/_ViewStart.cshtml and set the layout to the applications layout.
This commit is contained in:
parent
78f4c7342b
commit
2269a31983
|
|
@ -56,7 +56,8 @@
|
||||||
{
|
{
|
||||||
"condition": "(!IndividualLocalAuth)",
|
"condition": "(!IndividualLocalAuth)",
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"Data/**"
|
"Data/**",
|
||||||
|
"Areas/**"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
@{
|
||||||
|
Layout = "/Pages/_Layout.cshtml";
|
||||||
|
}
|
||||||
|
|
@ -49,7 +49,8 @@
|
||||||
{
|
{
|
||||||
"condition": "(!IndividualAuth)",
|
"condition": "(!IndividualAuth)",
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"Data/**"
|
"Data/**",
|
||||||
|
"Areas/**"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
@{
|
||||||
|
Layout = "/Views/Shared/_Layout.cshtml";
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue