Merge pull request #4508 from kstaikov/mailing_list_exclude_own_replies

FEATURE:'No Echo' option for mailing list mode.
This commit is contained in:
Régis Hanol
2016-10-22 10:45:14 +02:00
committed by GitHub
9 changed files with 62 additions and 5 deletions
@@ -79,7 +79,8 @@ export default Ember.Controller.extend(CanCheckEmails, {
mailingListModeOptions() {
return [
{name: I18n.t('user.mailing_list_mode.daily'), value: 0},
{name: this.get('frequencyEstimate'), value: 1}
{name: this.get('frequencyEstimate'), value: 1},
{name: I18n.t('user.mailing_list_mode.individual_no_echo'), value: 2}
];
},