mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
new uri settings
This commit is contained in:
@ -1,14 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Bit.Core.Models.Mail
|
||||
namespace Bit.Core.Models.Mail
|
||||
{
|
||||
public class BaseMailModel
|
||||
{
|
||||
private string _webVaultUrl;
|
||||
|
||||
public string SiteName { get; set; }
|
||||
public string WebVaultUrl { get; set; }
|
||||
public string WebVaultUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return _webVaultUrl;
|
||||
}
|
||||
set
|
||||
{
|
||||
_webVaultUrl = string.Concat(value, "/#");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user