mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
37ed4f43b2
* [EC-449] Added new Enum EventSystemUser * [EC-449] Added SystemUser property to Event model * [EC-449] Added SQL migration to add new column 'SystemUserType' to Event * [EC-449] EF migrations * [EC-449] Added EventSystemUser to EventResponseModel * [EC-449] Saving EventSystemUser.SCIM on SCIM controller actions * [EC-449] Updated Event_Create stored procedure on Sql project * [EC-449] Fixed SystemUser column name on Event table * [EC-507] SCIM CQRS Refactor - Groups/Put (#2269) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-531] Implemented CQRS for Groups Put and added unit tests * [EC-507] Created ScimServiceCollectionExtensions * [EC-507] Renamed AddScimCommands to AddScimGroupCommands * [EC-507] Created ExceptionHandlerFilterAttribute on SCIM project * [EC-507] Removed unneeded dependencies from GroupsController * [EC-507] Update PutGroupCommand to return Group PutGroupCommand returns Group and GroupsController creates ScimGroupResponseModel response * [EC-507] Remove Queries/Commands folders from Scim and Scim.Tests * [EC-507] Remove unneeded check on empty provided memberIds * [EC-507] SCIM CQRS Refactor - Groups/GetList (#2272) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-508] Implemented CQRS for Groups GetList and added unit tests * [EC-507] Created ScimServiceCollectionExtensions and renamed GetGroupsListCommand to GetGroupsListQuery * [EC-507] Renamed AddScimCommands to AddScimGroupQueries * [EC-507] Removed unneeded dependencies from GroupsController * [EC-507] Remove 'Queries' folder from Scim and Scim.Test * [EC-507] Move ScimListResponseModel from GetGroupsListQuery to Scim.GroupsController * [EC-507] Remove asserts on IGroupRepository.GetManyByOrganizationIdAsync from unit tests * [EC-507] SCIM CQRS Refactor - Groups/Get (#2271) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-507] Implemented CQRS for Groups Get and added unit tests * [EC-507] Created ScimServiceCollectionExtensions and renamed GetGroupCommand to GetGroupQuery * [EC-507] Renamed AddScimCommands to AddScimGroupQueries * [EC-507] Created ExceptionHandlerFilterAttribute on SCIM project * [EC-507] Removed unneeded dependencies from GroupsController * [EC-507] Sorted order of methods * [EC-507] Removed GetGroupQuery and moved logic to controller * [EC-507] Remove 'Queries' folder from Scim and Scim.Test * [EC-507] SCIM CQRS Refactor - Groups/Patch (#2268) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-532] Implemented CQRS for Groups Patch and added unit tests * [EC-507] Created ScimServiceCollectionExtensions * [EC-507] Renamed AddScimCommands to AddScimGroupCommands * [EC-507] Created ExceptionHandlerFilterAttribute on SCIM project * [EC-507] Removed unneeded dependencies from GroupsController * [EC-507] Remove Queries/Commands folders from Scim and Scim.Tests * [EC-507] Assert group.Name after saving. Assert userIds saved. * [EC-508] SCIM CQRS Refactor - Users/Delete (#2261) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-539] Implemented CQRS for Users Delete and added unit tests * [EC-508] Created ScimServiceCollectionExtensions * [EC-508] Created ExceptionHandlerFilterAttribute on SCIM project * [EC-508] Removed unneeded model from DeleteUserCommand. Removed unneeded dependencies from UsersController * [EC-508] Removed Bit.Scim.Models dependency from DeleteUserCommandTests * [EC-508] Deleted 'DeleteUserCommand' from SCIM; Created commands on Core 'DeleteOrganizationUserCommand', 'PushDeleteUserRegistrationOrganizationCommand' and 'OrganizationHasConfirmedOwnersExceptQuery' * [EC-508] Changed DeleteOrganizationUserCommand back to using IOrganizationService * [EC-508] Fixed DeleteOrganizationUserCommand unit tests * [EC-508] Remove unneeded obsolete comments. Update DeleteUserAsync Obsolete comment with ticket reference * [EC-508] Move DeleteOrganizationUserCommand to OrganizationFeatures folder * [EC-508] SCIM CQRS Refactor - Users/Post (#2264) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-536] Implemented CQRS for Users Post and added unit tests * [EC-508] Created ScimServiceCollectionExtensions * [EC-508] Renamed AddScimCommands to AddScimUserCommands * [EC-508] Created ExceptionHandlerFilterAttribute on SCIM project * [EC-508] Catching NotFoundException on ExceptionHandlerFilter * [EC-508] Remove Queries/Commands folders from Scim and Scim.Tests * [EC-508] SCIM CQRS Refactor - Users/Patch (#2262) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-538] Implemented CQRS for Users Patch and added unit tests * [EC-508] Added ScimServiceCollectionExtensions * [EC-508] Removed HandleActiveOperationAsync method from UsersController * [EC-508] Renamed AddScimCommands to AddScimUserCommands * [EC-508] Created ExceptionHandlerFilterAttribute on SCIM project * [EC-508] Removed unneeded dependencies from UsersController * [EC-508] Remove 'Query' folder from Scim and Scim.Test * [EC-507] SCIM CQRS Refactor - Groups/Post (#2270) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-530] Implemented CQRS for Groups Post and added unit tests * [EC-507] Created ScimServiceCollectionExtensions * [EC-507] Renamed AddScimCommands to AddScimGroupCommands * [EC-507] Created ExceptionHandlerFilterAttribute on SCIM project * [EC-507] Removed unneeded dependencies from GroupsController * [EC-507] Remove Queries/Commands folders from Scim and Scim.Test * [EC-507] Remove unneeded skipIfEmpty argument. Updated unit test to check provided userIds * [EC-507] Remove UpdateGroupMembersAsync from GroupsController * [EC-508] SCIM CQRS Refactor - Users/GetList (#2265) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-535] Implemented CQRS for Users GetList and added unit tests * [EC-508] Created ScimServiceCollectionExtensions and renamed GetUsersListCommand to GetUsersListQuery * [EC-508] Renamed AddScimCommands to AddScimUserQueries * [EC-508] Removed unneeded IUserRepository and IOptions<ScimSettings> from UsersController * [EC-508] Sorted UsersController properties and dependencies * [EC-508] Remove 'Queries' folder from Scim and Scim.Test * [EC-508] Move ScimListResponseModel creation to Scim.UsersController * [EC-508] Move ScimUserResponseModel creation to Scim.UsersController Co-authored-by: Thomas Rittson <trittson@bitwarden.com> * [EC-507] SCIM CQRS Refactor - Groups/Delete (#2267) * [EC-390] Added Scim.Test unit tests project * [EC-390] Added ConflictException type. Updated BadRequestException to have parameterless constructor. Updated NotFoundException to have constructor with a message parameter * [EC-533] Implemented CQRS for Groups Delete and added unit tests * [EC-507] Created ScimServiceCollectionExtensions * [EC-507] Renamed AddScimCommands to AddScimGroupCommands * [EC-507] Created ExceptionHandlerFilterAttribute on SCIM project * [EC-507] Removed unneeded dependencies from GroupsController * [EC-507] Move DeleteGroupCommand to OrganizationFeatures/OrganizationUsers * [EC-507] Remove IGetUserQuery and move logic to UsersController. Remove unused references. * [EC-449] Add overloads for EventService and GroupService methods that accept EventSystemUser as an argument * [EC-507] Move IDeleteGroupCommand to Groups folder * [EC-449] Add method overloads in IOrganizationService without EventSystemUser * [EC-449] Add RevokeUserAsync overload without EventSystemUser * [EC-449] Reverted OrganizationUsersController to not pass EventSystemUser argument * [EC-449] Uncomment assertion in GroupServiceTests * [EC-449] Update method overloads to not have nullable EventSystemUser * [EC-449] Add unit tests around events that can store EventSystemUser * [EC-449] Deleted private method GroupService.GroupRepositoryDeleteAsync * [EC-449] Move Event log call to public DeleteUserAsync methods * [EC-449] Move call to EventService log to public OrganizationService.InviteUsersAsync methods * [EC-449] Move EventService call to public OrganizationService.DeleteUserAsync methods * [EC-449] Move EventService call to OrganizationService.RevokeUserAsync methods * [EC-449] Move EventService call to OrganizationService.RestoreUserAsync methods * [EC-449] Add missing comma in SQL script for new SystemUser column on the Event table * [EC-449] Remove Autofixture hack from OrganizationServiceTests * [EC-449] Remove invitingUser param when methods expect an EventSystemUser param * [EC-449] Move DeleteUserAsync validation to private method * [EC-449] Move revokingUserId from RevokeUserAsync private method * [EC-449] Move restoringUserId to RestoreUserAsync public method * [EC-449] Set up OrganizationServiceTest Restore and Revoke tests on a single method * [EC-449] SaveUsersSendInvitesAsync to return both OrganizationUsers and Events list * [EC-449] Undo unintended change on CipherRepository * [EC-449] Add SystemUser value to EventTableEntity Co-authored-by: Thomas Rittson <trittson@bitwarden.com> |
||
---|---|---|
.. | ||
2017-08-19_00_InitialSetup.sql | ||
2017-08-22_00_LicenseCheckScripts.sql | ||
2017-08-30_00_CollectionWriteOnly.sql | ||
2017-09-06_00_CipherDetails.sql | ||
2017-09-08_00_OrgUserCounts.sql | ||
2017-10-25_00_OrgUserUpdates.sql | ||
2017-11-06_00_FamilyPlanAdjustments.sql | ||
2017-11-13_00_IndexTuning.sql | ||
2017-11-24_00_UpdateProcs.sql | ||
2017-12-12_00_Events.sql | ||
2018-02-28_00_LoginUris.sql | ||
2018-03-12_00_FixLoginUris.sql | ||
2018-03-21_00_AdminPortal.sql | ||
2018-04-02_00_Org2fa.sql | ||
2018-04-24_00_CipherQueryTuning.sql | ||
2018-06-11_00_WebVaultUpdates.sql | ||
2018-07-28_00_DbTuning.sql | ||
2018-08-14_00_UserKdf.sql | ||
2018-08-28_00_PremiumOrgAbilities.sql | ||
2018-09-25_00_OrgPurge.sql | ||
2018-10-17_00_ManagerRole.sql | ||
2018-12-19_00_OrgUserTwoFactorEnabled.sql | ||
2019-01-31_00_Transactions.sql | ||
2019-03-01_00_OrgApi.sql | ||
2019-05-01_00_CipherOrgDetailsFix.sql | ||
2019-05-15_00_GroupNameFixes.sql | ||
2019-05-28_00_CollectionCipherImprovements.sql | ||
2020-02-18_00_PolicySetup.sql | ||
2020-03-26_00_CipherSoftDelete.sql | ||
2020-04-01_00_CipherSoftDelete.sql | ||
2020-04-02_00_CipherSoftDelete.sql | ||
2020-04-09_00_CipherSoftDelete.sql | ||
2020-05-02_00_SprocPerfTweaks.sql | ||
2020-05-22_00_HiddenPassword.sql | ||
2020-06-23_00_OrgIdentifier.sql | ||
2020-06-24_00_SsoConfig.sql | ||
2020-06-25_00_ReferenceId.sql | ||
2020-07-17_00_ReferenceData.sql | ||
2020-07-20_00_OrgSso.sql | ||
2020-07-21_00_BulkDeleteCiphersAsOrgAdmin.sql | ||
2020-07-27_00_SsoUser.sql | ||
2020-07-28_00_SsoBound.sql | ||
2020-07-30_00_IdServerv4.sql | ||
2020-08-12_00_OrgIdentifierProc.sql | ||
2020-08-13_00_AllowNullMasterPassword.sql | ||
2020-08-19_00_AddIdentifierToOrgView.sql | ||
2020-08-19_00_SsoConfigGetAll.sql | ||
2020-08-28_00_OrgByIdentifierFix.sql | ||
2020-09-01_00_DeleteSsoUser.sql | ||
2020-09-01_01_DeleteSsoUser2.sql | ||
2020-09-02_00_DeleteSsoConfig.sql | ||
2020-10-06_00_Send.sql | ||
2020-10-08_00_DeleteOrgUserWithOrg.sql | ||
2020-10-14_00_OrgUserReadByUserIds.sql | ||
2020-10-20_00_OrgReadAbilities.sql | ||
2020-10-28_00_UserApiKey.sql | ||
2020-11-16_00_SalesTax.sql | ||
2020-11-18_00_EmergencyAccess.sql | ||
2020-12-04_00_OrgUserReadByOrgEmail.sql | ||
2020-12-06_00_OrgUserOrgDetailsReadByUserIdStatusOrgId.sql | ||
2020-12-14_00_Permissions.sql | ||
2021-01-05_00_ReturnRevisionDateOnCipherRestore.sql | ||
2021-01-28_00_AddDeleteSendsToUserDeleteById.sql | ||
2021-02-26_00_EmergencyAccess_ReadToNotify.sql | ||
2021-03-04_00_Installation_Enlarge_Email_Column.sql | ||
2021-03-04_01_User_Enlarge_Email_Column.sql | ||
2021-03-04_02_Organization_Enlarge_Email_Column.sql | ||
2021-03-04_03_OrganizationUser_Enlarge_Email_Column.sql | ||
2021-03-04_04_EmergencyAccess_Enlarge_Email_Column.sql | ||
2021-03-22_00_Send_Add_HideEmail_Column.sql | ||
2021-03-23_00_AddResetPasswordKey.sql | ||
2021-03-26_00_CipherDeletedIndex.sql | ||
2021-04-07_00_IncreaseOrgSeatSize.sql | ||
2021-04-16_00_OrganizationUser_DeleteMany.sql | ||
2021-04-27_00_OrganizationUser_UpsertMany.sql | ||
2021-04-28_00_OrgResetPasswordAbilityAndRsaKeys.sql | ||
2021-04-30_00_Select_Known_OrganizationUsers_Emails.sql | ||
2021-05-04_00_CipherPasswordPromptFixed.sql | ||
2021-05-11_00_BulkReinvite.sql | ||
2021-05-18_00_BulkConfirm.sql | ||
2021-05-27_00_SetQuotedIdentifier.sql | ||
2021-07-07_00_FixBulkConfirm.sql | ||
2021-07-08_00_EntityFrameworkSupport.sql | ||
2021-07-13_00_UserForcePasswordReset.sql | ||
2021-07-15_00_OrganizationUserReadByMinimumRole.sql | ||
2021-07-22_00_FixCollectionReadBy.sql | ||
2021-07-22_00_Provider.sql | ||
2021-08-12_00_ReadByMinimumRoleCheckStatus.sql | ||
2021-08-18_00_AutoscaleOrganizationsSeats.sql | ||
2021-08-19_00_FixTaxRate.sql | ||
2021-09-02_00_SsoUserReadyByUserIdOrganizationId.sql | ||
2021-09-10_00_DeleteProviderUser.sql | ||
2021-09-16_00_PolicyApplicableToUser.sql | ||
2021-09-21_01_SplitManageCollectionsJson.sql | ||
2021-10-21_00_DefaultAutoscaleLimitToCurrentSeats.sql | ||
2021-11-01_00_FixPolicyApplicableToUser.sql | ||
2021-11-02_00_OrganizationSponsorship.sql | ||
2021-11-08_00_KeyConnector.sql | ||
2021-11-09_00_DropUsesCryptoAgent.sql | ||
2021-11-12_00_KeyConnectorFlag.sql | ||
2021-11-18_00_MergeKeyConnectorAndFFE.sql | ||
2021-11-23_00_NullOrganizationSponsorshipOnFkDelete.sql | ||
2021-11-30_00_NullOrganizationSponsorshipOnOrgDelete.sql | ||
2022-01-21_00_RemoveU2F.sql | ||
2022-02-10_00_FailedLoginCaptcha.sql | ||
2022-03-01_00_AddApiKeysTable.sql | ||
2022-04-06_00_SponsorshipBulkActions.sql | ||
2022-04-13_00_OrganizationSponsorshipUpdates.sql | ||
2022-04-14_00_ReadOrganizationConnectionsByOrganizationId.sql | ||
2022-04-15_00_FixOrganizationConnectionCreate.sql | ||
2022-04-20_00_AddInstalltionIdToEvents.sql | ||
2022-05-10_00_RebuildMetadata.sql | ||
2022-05-23_00_OrgUserDelete.sql | ||
2022-05-24_00_DeviceUnknownVerification.sql | ||
2022-05-31_00_CipherOrganizationDetails.sql | ||
2022-06-08_00_DeactivatedUserStatus.sql | ||
2022-06-24_00_UseScimFlag.sql | ||
2022-07-15_00_FixOrgUserDetails.sql | ||
2022-07-19_00_FixUseScimFlag.sql | ||
2022-07-20_00_ProviderOrganizationListDetails.sql | ||
2022-07-28_00_CheckPoliciesOnRestore.sql | ||
2022-09-08_00_CipherMovePermissions.sql | ||
2022-09-12_00_AuthRequestInit.sql | ||
2022-09-12_01_AuthRequestUpdate.sql | ||
2022-09-26_00_EventsSystemUser.sql | ||
2022-10-24_00_AuthRequestAddApprovedColumn.sql |