mirror of
https://github.com/bitwarden/server
synced 2026-02-14 15:33:35 +00:00
* add ChangePasswordUri controller and service to Icons * add individual settings for change password uri * add logging to change password uri controller * use custom http client that follows redirects * add ChangePasswordUriService tests * remove unneeded null check * fix copy pasta - changePasswordUriSettings * add `HelpUsersUpdatePasswords` policy * Remove policy for change password uri - this was removed from scope * fix nullable warnings
12 lines
199 B
C#
12 lines
199 B
C#
namespace Bit.Icons.Models;
|
|
|
|
public class ChangePasswordUriResponse
|
|
{
|
|
public string? uri { get; set; }
|
|
|
|
public ChangePasswordUriResponse(string? uri)
|
|
{
|
|
this.uri = uri;
|
|
}
|
|
}
|