mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
db7d05b52f
* Added PreValidate endpoint on Account controller * Fixed IHttpClientFactory implementation * Core localization and org sproc fix * Pass culture, fixed sso middleware bug
21 lines
368 B
Transact-SQL
21 lines
368 B
Transact-SQL
IF OBJECT_ID('[dbo].[Organization_ReadByIdentifier]') IS NOT NULL
|
|
BEGIN
|
|
DROP PROCEDURE [dbo].[Organization_ReadByIdentifier]
|
|
END
|
|
GO
|
|
|
|
CREATE PROCEDURE [dbo].[Organization_ReadByIdentifier]
|
|
@Identifier NVARCHAR(50)
|
|
AS
|
|
BEGIN
|
|
SET NOCOUNT ON
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
[dbo].[OrganizationView]
|
|
WHERE
|
|
[Identifier] = @Identifier
|
|
END
|
|
GO
|