Removed the AccountGroup emailOnlyAuthors flag.
The functionality has been replaced with a global capability in All-Projects project.config with the name emailReviewers. The emailyOnlyAuthors groups will be listed with the deny permission in the next change. Change-Id: I67506956e2689c0840d4a37235c733d23fe1e7ad
This commit is contained in:
@@ -216,11 +216,6 @@ public final class AccountGroup {
|
||||
@Column(id = 7)
|
||||
protected boolean visibleToAll;
|
||||
|
||||
/** Comment and action email notifications by users in this group are only
|
||||
* sent to change authors. */
|
||||
@Column(id = 8)
|
||||
protected boolean emailOnlyAuthors;
|
||||
|
||||
/** Globally unique identifier name for this group. */
|
||||
@Column(id = 9)
|
||||
protected UUID groupUUID;
|
||||
@@ -294,14 +289,6 @@ public final class AccountGroup {
|
||||
return visibleToAll;
|
||||
}
|
||||
|
||||
public boolean isEmailOnlyAuthors() {
|
||||
return emailOnlyAuthors;
|
||||
}
|
||||
|
||||
public void setEmailOnlyAuthors(boolean emailOnlyAuthors) {
|
||||
this.emailOnlyAuthors = emailOnlyAuthors;
|
||||
}
|
||||
|
||||
public AccountGroup.UUID getGroupUUID() {
|
||||
return groupUUID;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user