mirror of
https://github.com/bitwarden/server
synced 2026-01-18 16:33:29 +00:00
DB support for SSO config
This commit is contained in:
13
src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql
Normal file
13
src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
CREATE PROCEDURE [dbo].[SsoConfig_ReadByIdentifier]
|
||||
@Identifier NVARCHAR(50)
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[SsoConfigView]
|
||||
WHERE
|
||||
[Identifier] = @Identifier
|
||||
END
|
||||
Reference in New Issue
Block a user