Add an option to tune notifications on account inserts in LdapSyncCommand#1211
Add an option to tune notifications on account inserts in LdapSyncCommand#1211vladsf merged 20 commits intoeventum:masterfrom
Conversation
|
how do you tune this flag? via command-line options to sync command? also, use github draft feature rather title prefix: |
|
Yes, I want to add |
|
@glensc I'd like to merge it. |
|
@vladsf will you rebase and fix your PR commit history, or have it squash merge again? |
|
|
|
@vladsf ambiguity, unclear if you prefer to squash your commits yourself, or squash during merge? |
Bumps [laminas/laminas-mail](https://github.com/laminas/laminas-mail) from 2.14.1 to 2.15.1. - [Release notes](https://github.com/laminas/laminas-mail/releases) - [Commits](laminas/laminas-mail@2.14.1...2.15.1) --- updated-dependencies: - dependency-name: laminas/laminas-mail dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [symfony/flex](https://github.com/symfony/flex) from 1.15.4 to 1.16.2. - [Release notes](https://github.com/symfony/flex/releases) - [Commits](symfony/flex@v1.15.4...v1.16.2) --- updated-dependencies: - dependency-name: symfony/flex dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
Ok. I'm going to remove @vladsf your merge mana, as obviously you have no idea what are you doing. if you were uncertain, you would have asked, but you instead merged those foreign commits not related to this pull request. |
|
OK, I guess I need some contributor guidelines. |
|
Sorry. Github allows me to revert the changes. |
|
Now I have |
resolved my issues, I can submit clean PR again. The question left - should I |
|
I am afraid this history rewriting might affect forked repositories. |
|
instead of |
|
history rewriting is done only on feature branches (pull requests). this git reset to undo your damage was one time only, unlikely anyone but you had pulled those changes. |


Add a property to disable user notification on account insert action in LdapAdapter.php
Justification: This adapter already has notification turned off for user account updates. To add the same option for
User::insert()is in accordance with the code.It is debatable to add this option to global ldap config or not.
This PR helps to make notofications configurable in
eventum:ldap:synccommand.