1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 07:36:14 -05:00

[AC-2522] Remove collection enhancements opt-in (#4110)

* Delete controller endpoint
* Delete command
* Drop sproc
This commit is contained in:
Thomas Rittson
2024-05-24 09:00:04 +10:00
committed by GitHub
parent ba93c0008b
commit be41865b59
13 changed files with 5 additions and 1101 deletions

View File

@ -0,0 +1,5 @@
IF OBJECT_ID('[dbo].[Organization_EnableCollectionEnhancements]') IS NOT NULL
BEGIN
DROP PROCEDURE [dbo].[Organization_EnableCollectionEnhancements]
END
GO