- Issue created by @lauriii
- Merge request !10593Issue #3493122 by lauriii, jquijano: Users are able to block themselves from Drupal โ (Open) created by Unnamed author
Modified AccountForm to prevent status field rendering only if the account editor is the same user to prevent self-blocking
- ๐บ๐ธUnited States nicxvan
Pretty sure this is intentional and required: #8-75: Let users cancel their accounts โ
- ๐บ๐ธUnited States nicxvan
Yeah this should be closed works as designed.
This is required in some places.
- ๐ซ๐ฎFinland lauriii Finland
We have the "Cancel own user account" and "Select method for cancelling account" permissions which make sense for the use case of cancelling your own user. As a requirement, that makes sense because on some sites, you may want to allow users to remove their own user.
If a site is legally mandated to keep the information about author even after canceling the user, the site administrator, would have to disable the "Select method for cancelling account" permission from users, and configure the user cancellation to "Disable the account and keep its content".
I'm not sure I see what's the use case where you'd explicitly have to be able to block your own user outside of the canceling scenario.
- ๐บ๐ธUnited States smustgrave
Agree with @lauriii in #7. Thinking of something like facebook where I can cancel my account but I can't block.
Moving to NW for test coverage
Added test case to validate the existence of status field for 2 situations:
- When user edits itself
- When user edits other user
- First commit to issue fork.
- ๐ฌ๐งUnited Kingdom oily Greater London
PHPSTAN: broken +80 chars comment into two lines in test.
- ๐ฌ๐งUnited Kingdom oily Greater London
Removed a line from the test, just assert for first radio button. See example in UserSubAdminTest.php line 40.
- ๐ฌ๐งUnited Kingdom oily Greater London
Test-only test fails as it should. Pipeline all green.
- ๐ฎ๐ณIndia sagarmohite0031
Hello,
Tested and verified on Drupal 11.
MR applied successfully.
Its working as expected "Status" field is hidden from the user when rendered for the current user.
Attachments - ๐ฌ๐งUnited Kingdom oily Greater London
Thank you for the review @sagarmohite0031. Based on that I am changing to RTBTC.
- ๐ง๐ชBelgium kristiaanvandeneynde Antwerp, Belgium
Please don't RTBC based on someone else's comment unless they explicitly state they have reviewed the code. For all we know @sagarmohite0031 only applied the patch without checking the code.
Left some feedback that warrants setting back to NW.
- ๐จ๐ฆCanada Charlie ChX Negyesi ๐Canada
Usually form fields are hidden from access via #access instead of removing them to keep the form structure intact for alters.
- ๐ง๐ชBelgium kristiaanvandeneynde Antwerp, Belgium
Yeah I mentioned that option in the review. In this case I would even consider disabling it so admins don't face varying forms depending on which user they're editing and end up getting confused.
Something along the lines of: As an administrator, you cannot block your own account. Either [cancel it] or ask another administrator to block it for you.
- ๐ฌ๐งUnited Kingdom oily Greater London
@kristiaanvandeneynde Thank you for #19. I will check what the docs say on it. The value of the RTBTC was the evidence in screenshots which although not fullproof is a lot better than a simple statement. If what you say is true then if the review had merely stated, 'checked the code. All good.' then that would ensure the review was authentic? Hmm. I think what makes reviews reliable is having experienced contributors like yourself do the review. But there is no mechanism for that.
- ๐ง๐ชBelgium kristiaanvandeneynde Antwerp, Belgium
For what it's worth I always considered the R in RTBC as "Reviewed the code" whereas the T means "Tested the outcome / changes". Non-technical users can provide great feedback for the latter, but at least one technical person needs to check the former for an issue to truly be RTBC. It causes a lot of noise for committers if a bunch of issues are set to RTBC and none of them meet the code quality gates.
- ๐ฌ๐งUnited Kingdom oily Greater London
#23 Thank you, interesting to see it from your angle as a committer.
Reverted previous changes, added a condition to #access attribute to make it false if user self-editing according to @kristiaanvandeneynde's suggestions. Updated branch with lastest changes from main 11.x branch.