From 1b61460baeb3800020dc34f03c2bfa37c21711bf Mon Sep 17 00:00:00 2001 From: Ike Kottlowski Date: Fri, 27 Jun 2025 15:10:55 -0400 Subject: [PATCH] fix: added new lines at end of files --- .../Auth/Stored Procedures/AuthRequest_ReadPendingByUserId.sql | 2 +- src/Sql/dbo/Auth/Views/AuthRequestPendingDetailsView.sql | 2 +- .../2025-06-04-00_AddReadPendingAuthRequestsByUserId.sql | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Sql/dbo/Auth/Stored Procedures/AuthRequest_ReadPendingByUserId.sql b/src/Sql/dbo/Auth/Stored Procedures/AuthRequest_ReadPendingByUserId.sql index 67d103d1ae..4c3217812a 100644 --- a/src/Sql/dbo/Auth/Stored Procedures/AuthRequest_ReadPendingByUserId.sql +++ b/src/Sql/dbo/Auth/Stored Procedures/AuthRequest_ReadPendingByUserId.sql @@ -9,4 +9,4 @@ BEGIN FROM [dbo].[AuthRequestPendingDetailsView] WHERE [UserId] = @UserId AND [CreationDate] >= DATEADD(MINUTE, -@ExpirationMinutes, GETUTCDATE()) -END \ No newline at end of file +END diff --git a/src/Sql/dbo/Auth/Views/AuthRequestPendingDetailsView.sql b/src/Sql/dbo/Auth/Views/AuthRequestPendingDetailsView.sql index dc4cad0299..d0433bca09 100644 --- a/src/Sql/dbo/Auth/Views/AuthRequestPendingDetailsView.sql +++ b/src/Sql/dbo/Auth/Views/AuthRequestPendingDetailsView.sql @@ -35,4 +35,4 @@ AS [PR].[DeviceId] FROM [PendingRequests] [PR] WHERE [PR].[rn] = 1 - AND [PR].[Approved] IS NULL -- since we only want pending requests we only want the most recent that is also approved = null \ No newline at end of file + AND [PR].[Approved] IS NULL -- since we only want pending requests we only want the most recent that is also approved = null diff --git a/util/Migrator/DbScripts/2025-06-04-00_AddReadPendingAuthRequestsByUserId.sql b/util/Migrator/DbScripts/2025-06-04-00_AddReadPendingAuthRequestsByUserId.sql index 9151247426..86f4683cff 100644 --- a/util/Migrator/DbScripts/2025-06-04-00_AddReadPendingAuthRequestsByUserId.sql +++ b/util/Migrator/DbScripts/2025-06-04-00_AddReadPendingAuthRequestsByUserId.sql @@ -50,4 +50,4 @@ BEGIN WHERE [UserId] = @UserId AND [CreationDate] >= DATEADD(MINUTE, -@ExpirationMinutes, GETUTCDATE()) END - GO \ No newline at end of file + GO