mirror of https://github.com/abpframework/abp.git
1 changed files with 15 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||
namespace Volo.Abp.AspNetCore.Mvc.UI |
|||
{ |
|||
public class AbpMvcUiOptions |
|||
{ |
|||
/// <summary>
|
|||
/// Default value: "/Account/Login".
|
|||
/// </summary>
|
|||
public string LoginUrl { get; set; } = "/Account/Login"; |
|||
|
|||
/// <summary>
|
|||
/// Default value: "/Account/Logout".
|
|||
/// </summary>
|
|||
public string LogoutUrl { get; set; } = "/Account/Logout"; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue