Issue #2886569: Show disabled Published checkbox when user doesnt have access
1 unresolved thread
Closes #2886569
Merge request reports
Activity
added 84 commits
-
dbf15cca...fb24b240 - 81 commits from branch
project:11.x
- c67bca77 - Issue #3059030: Show disabled Published checkbox when user doesnt have access
- 44f7a4d4 - Fix meta information test to check for specific meta information
- 5497e3cd - Add test coverage for status checkbox
Toggle commit list-
dbf15cca...fb24b240 - 81 commits from branch
added 137 commits
-
5497e3cd...9456d921 - 134 commits from branch
project:11.x
- 7024a4c0 - Issue #3059030: Show disabled Published checkbox when user doesnt have access
- b096cb2f - Fix meta information test to check for specific meta information
- 166e41eb - Add test coverage for status checkbox
Toggle commit list-
5497e3cd...9456d921 - 134 commits from branch
added 114 commits
-
c50bb73a...3b308073 - 110 commits from branch
project:11.x
- f37b49a8 - Issue #3059030: Show disabled Published checkbox when user doesnt have access
- 2eab71c9 - Fix meta information test to check for specific meta information
- cb17c1ce - Add test coverage for status checkbox
- 3050ecbe - Check field edit access directly
Toggle commit list-
c50bb73a...3b308073 - 110 commits from branch
added 1 commit
- 06cebab4 - Add test coverage for the published checkbox in content moderation for a user...
102 102 $this->fail('Test node was not saved correctly.'); 103 103 } 104 104 105 // Ensure the status field is not visible for a user without administer 106 // nodes. 107 $this->drupalLogin($this->createUser([ 108 'create moderated_content content', 109 ])); 110 $this->drupalGet('node/add/moderated_content'); 111 $this->assertSession()->statusCodeEquals(200); 112 $this->assertSession()->fieldNotExists('Published'); Adding test coverage here to make sure we don't regress content_moderation's UI which we would have when using a permission based check in NodeForm (see https://www.drupal.org/project/drupal/issues/2886569#comment-16135454)
Please register or sign in to reply