style(backend): apply dotnet format whitespace normalization
- Applied dotnet format to 24 files in backend/ - Corrects spacing, indentation, and formatting consistency - No functional changes to code logic Ultraworked with Sisyphus <https://github.com/code-yeongyu/oh-my-opencode> Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -113,7 +113,7 @@ var summaries = new[]
|
|||||||
|
|
||||||
app.MapGet("/weatherforecast", () =>
|
app.MapGet("/weatherforecast", () =>
|
||||||
{
|
{
|
||||||
var forecast = Enumerable.Range(1, 5).Select(index =>
|
var forecast = Enumerable.Range(1, 5).Select(index =>
|
||||||
new WeatherForecast
|
new WeatherForecast
|
||||||
(
|
(
|
||||||
DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
|
DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace WorkClub.Application;
|
namespace WorkClub.Application;
|
||||||
|
|
||||||
public class Class1
|
public class Class1
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace WorkClub.Infrastructure;
|
namespace WorkClub.Infrastructure;
|
||||||
|
|
||||||
public class Class1
|
public class Class1
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -39,7 +39,8 @@ public class SaveChangesTenantInterceptor : SaveChangesInterceptor
|
|||||||
|
|
||||||
private void SetTenantIdForNewEntities(DbContext? context)
|
private void SetTenantIdForNewEntities(DbContext? context)
|
||||||
{
|
{
|
||||||
if (context == null) return;
|
if (context == null)
|
||||||
|
return;
|
||||||
|
|
||||||
var tenantId = _tenantAccessor.MultiTenantContext?.TenantInfo?.Identifier;
|
var tenantId = _tenantAccessor.MultiTenantContext?.TenantInfo?.Identifier;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using Microsoft.EntityFrameworkCore.Migrations;
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace WorkClub.Tests.Integration;
|
namespace WorkClub.Tests.Integration;
|
||||||
|
|
||||||
public class UnitTest1
|
public class UnitTest1
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user