Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PM-7485] chore: fix some typos in comments #3989

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -783,7 +783,7 @@ public async Task<OrganizationPublicKeyResponseModel> GetPublicKey(string id)
return new OrganizationPublicKeyResponseModel(org);
}

[Obsolete("TDL-136 Renamed to public-key (2023.8), left for backwards compatability with older clients.")]
[Obsolete("TDL-136 Renamed to public-key (2023.8), left for backwards compatibility with older clients.")]
[HttpGet("{id}/keys")]
public async Task<OrganizationPublicKeyResponseModel> GetKeys(string id)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Api/Auth/Controllers/AccountsController.cs
Expand Up @@ -145,7 +145,7 @@ public class AccountsController : Controller

#region DEPRECATED (Moved to Identity Service)

[Obsolete("TDL-136 Moved to Identity (2022-01-12 cloud, 2022-09-19 self-hosted), left for backwards compatability with older clients.")]
[Obsolete("TDL-136 Moved to Identity (2022-01-12 cloud, 2022-09-19 self-hosted), left for backwards compatibility with older clients.")]
[HttpPost("prelogin")]
[AllowAnonymous]
public async Task<PreloginResponseModel> PostPrelogin([FromBody] PreloginRequestModel model)
Expand All @@ -162,7 +162,7 @@ public async Task<PreloginResponseModel> PostPrelogin([FromBody] PreloginRequest
return new PreloginResponseModel(kdfInformation);
}

[Obsolete("TDL-136 Moved to Identity (2022-01-12 cloud, 2022-09-19 self-hosted), left for backwards compatability with older clients.")]
[Obsolete("TDL-136 Moved to Identity (2022-01-12 cloud, 2022-09-19 self-hosted), left for backwards compatibility with older clients.")]
[HttpPost("register")]
[AllowAnonymous]
[CaptchaProtected]
Expand Down
Expand Up @@ -74,7 +74,7 @@ IF COL_LENGTH('[dbo].[CollectionGroup]', 'Manage') IS NULL
END
GO

-- BEGIN Update procedures that support backwards compatability in place
-- BEGIN Update procedures that support backwards compatibility in place
-- These procedures can be safely used by server in case of rollback and do not require V2 versions

-- Readonly query that adds [Manage] column to result, safely ignored by rolled back server
Expand Down Expand Up @@ -317,7 +317,7 @@ BEGIN
END
GO

-- END Update procedures that support backwards compatability in place
-- END Update procedures that support backwards compatibility in place

-- BEGIN Create V2 of existing procedures to support new [Manage] column and new CollectionAccessSelectionType

Expand Down
2 changes: 1 addition & 1 deletion util/Setup/AppIdBuilder.cs
Expand Up @@ -16,7 +16,7 @@ public void Build()
Url = _context.Config.Url
};

// Needed for backwards compatability with migrated U2F tokens.
// Needed for backwards compatibility with migrated U2F tokens.
Helpers.WriteLine(_context, "Building FIDO U2F app id.");
Directory.CreateDirectory("/bitwarden/web/");
var template = Helpers.ReadTemplate("AppId");
Expand Down