mirror of
https://github.com/bitwarden/server
synced 2026-01-03 17:14:00 +00:00
Grant table for identity persisted grants
This commit is contained in:
13
src/Sql/dbo/Stored Procedures/Grant_ReadByKey.sql
Normal file
13
src/Sql/dbo/Stored Procedures/Grant_ReadByKey.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
CREATE PROCEDURE [dbo].[Grant_ReadByKey]
|
||||
@Key NVARCHAR(200)
|
||||
AS
|
||||
BEGIN
|
||||
SET NOCOUNT ON
|
||||
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
[dbo].[GrantView]
|
||||
WHERE
|
||||
[Key] = @Key
|
||||
END
|
||||
Reference in New Issue
Block a user