1
0
mirror of https://github.com/bitwarden/server synced 2025-12-21 10:43:44 +00:00

Updating SM to Sm, and adding more view refreshes

This commit is contained in:
cd-bitwarden
2025-11-05 21:50:36 -05:00
parent 7db2a840e6
commit 2bca8b1f07
28 changed files with 90 additions and 56 deletions

View File

@@ -11,7 +11,7 @@ public partial class AddingNewFlagToLicenseForDisableSMAdsForUser : Migration
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "UseDisableSMAdsForUsers",
name: "UseDisableSmAdsForUsers",
table: "Organization",
type: "boolean",
nullable: false,
@@ -22,7 +22,7 @@ public partial class AddingNewFlagToLicenseForDisableSMAdsForUser : Migration
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "UseDisableSMAdsForUsers",
name: "UseDisableSmAdsForUsers",
table: "Organization");
}
}