1
0
mirror of https://github.com/bitwarden/server synced 2025-12-30 23:23:37 +00:00

group external id

This commit is contained in:
Kyle Spearrin
2017-05-12 14:02:33 -04:00
parent 5a6e189e67
commit 5d595d4cf9
8 changed files with 15 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
@OrganizationId UNIQUEIDENTIFIER,
@Name VARCHAR(MAX),
@AccessAll BIT,
@ExternalId NVARCHAR(50),
@CreationDate DATETIME2(7),
@RevisionDate DATETIME2(7),
@Collections AS [dbo].[SelectionReadOnlyArray] READONLY
@@ -10,7 +11,7 @@ AS
BEGIN
SET NOCOUNT ON
EXEC [dbo].[Group_Create] @Id, @OrganizationId, @Name, @AccessAll, @CreationDate, @RevisionDate
EXEC [dbo].[Group_Create] @Id, @OrganizationId, @Name, @AccessAll, @ExternalId, @CreationDate, @RevisionDate
;WITH [AvailableCollectionsCTE] AS(
SELECT