1
0
mirror of https://github.com/bitwarden/server synced 2026-01-19 17:03:16 +00:00

added groups apis

This commit is contained in:
Kyle Spearrin
2017-05-08 14:08:44 -04:00
parent a03c19d693
commit fdf7546f33
16 changed files with 323 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
CREATE PROCEDURE [dbo].[Group_ReadByOrganizationId]
@OrganizationId UNIQUEIDENTIFIER
AS
BEGIN
SET NOCOUNT ON
SELECT
*
FROM
[dbo].[GroupView]
WHERE
[OrganizationId] = @OrganizationId
END