mirror of
https://github.com/bitwarden/server.git
synced 2025-05-03 18:52:22 -05:00
25 lines
610 B
C#
25 lines
610 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Bit.Icons.Services
|
|
{
|
|
public class DomainMappingService : IDomainMappingService
|
|
{
|
|
private readonly Dictionary<string, string> _map = new Dictionary<string, string>
|
|
{
|
|
["vault.bitwarden.com"] = "bitwarden.com",
|
|
["accounts.google.com"] = "google.com",
|
|
// TODO: Add others here
|
|
};
|
|
|
|
public string MapDomain(string hostname)
|
|
{
|
|
if(_map.ContainsKey(hostname))
|
|
{
|
|
return _map[hostname];
|
|
}
|
|
|
|
return hostname;
|
|
}
|
|
}
|
|
}
|