Browse Source

Replace company.com with example.com (#502)

pull/512/head
Sandro Jäckel 7 years ago committed by Kyle Spearrin
parent
commit
3feaaf8f01
  1. 2
      appveyor.yml
  2. 2
      scripts/run.ps1
  3. 2
      scripts/run.sh
  4. 2
      src/Core/Models/Api/Public/Request/MemberCreateRequestModel.cs
  5. 2
      src/Core/Models/Api/Public/Response/MemberResponseModel.cs

2
appveyor.yml

@ -96,7 +96,7 @@ build_script: @@ -96,7 +96,7 @@ build_script:
echo "Make docker stubs"
STUB_OUTPUT=$(pwd)/docker-stub
docker run -i --rm --name setup -v $STUB_OUTPUT:/bitwarden bitwarden/setup:dev \
dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.company.com -os lin
dotnet Setup.dll -stub 1 -install 1 -domain bitwarden.example.com -os lin
sudo chown -R appveyor:appveyor $STUB_OUTPUT
rm -rf $STUB_OUTPUT/letsencrypt
rm $STUB_OUTPUT/env/uid.env $STUB_OUTPUT/config.yml

2
scripts/run.ps1

@ -36,7 +36,7 @@ if("${env:BITWARDEN_CERTBOT_HTTPS_PORT}" -ne "") { @@ -36,7 +36,7 @@ if("${env:BITWARDEN_CERTBOT_HTTPS_PORT}" -ne "") {
function Install() {
[string]$letsEncrypt = "n"
Write-Host "(!) " -f cyan -nonewline
[string]$domain = $( Read-Host "Enter the domain name for your Bitwarden instance (ex. bitwarden.company.com)" )
[string]$domain = $( Read-Host "Enter the domain name for your Bitwarden instance (ex. bitwarden.example.com)" )
echo ""
if ($domain -eq "") {

2
scripts/run.sh

@ -62,7 +62,7 @@ fi @@ -62,7 +62,7 @@ fi
function install() {
LETS_ENCRYPT="n"
echo -e -n "${CYAN}(!)${NC} Enter the domain name for your Bitwarden instance (ex. bitwarden.company.com): "
echo -e -n "${CYAN}(!)${NC} Enter the domain name for your Bitwarden instance (ex. bitwarden.example.com): "
read DOMAIN
echo ""

2
src/Core/Models/Api/Public/Request/MemberCreateRequestModel.cs

@ -9,7 +9,7 @@ namespace Bit.Core.Models.Api.Public @@ -9,7 +9,7 @@ namespace Bit.Core.Models.Api.Public
/// <summary>
/// The member's email address.
/// </summary>
/// <example>jsmith@company.com</example>
/// <example>jsmith@example.com</example>
[Required]
[EmailAddress]
public string Email { get; set; }

2
src/Core/Models/Api/Public/Response/MemberResponseModel.cs

@ -64,7 +64,7 @@ namespace Bit.Core.Models.Api.Public @@ -64,7 +64,7 @@ namespace Bit.Core.Models.Api.Public
/// <summary>
/// The member's email address.
/// </summary>
/// <example>jsmith@company.com</example>
/// <example>jsmith@example.com</example>
[Required]
public string Email { get; set; }
/// <summary>

Loading…
Cancel
Save