mirror of
https://github.com/bitwarden/server
synced 2026-01-05 10:03:23 +00:00
org user management apis
This commit is contained in:
13
src/Sql/dbo/Stored Procedures/User_ReadPublicKeyById.sql
Normal file
13
src/Sql/dbo/Stored Procedures/User_ReadPublicKeyById.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
CREATE PROCEDURE [dbo].[User_ReadPublicKeyById]
|
||||
@Id NVARCHAR(50)
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
[PublicKey]
|
||||
FROM
|
||||
[dbo].[User]
|
||||
WHERE
|
||||
[Id] = @Id
|
||||
END
|
||||
Reference in New Issue
Block a user