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:
Colby Ranger
2012-04-10 14:27:06 -07:00
parent d9488f0c37
commit 74d093d93d
10 changed files with 19 additions and 82 deletions

View File

@@ -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;
}