59422d682e301d90d7835fc5d6c95b038a115c69
[oweals/peertube.git] /
1 <div class="custom-row">
2   <div i18n>Activities</div>
3   <div i18n>Web</div>
4   <div i18n *ngIf="emailEnabled">Email</div>
5 </div>
6
7 <div class="custom-row" *ngFor="let notificationType of notificationSettingKeys">
8   <ng-container *ngIf="hasUserRight(notificationType)">
9     <div>{{ labelNotifications[notificationType] }}</div>
10
11     <div>
12       <p-inputSwitch [(ngModel)]="webNotifications[notificationType]" (onChange)="updateWebSetting(notificationType, $event.checked)"></p-inputSwitch>
13     </div>
14
15     <div *ngIf="emailEnabled">
16       <p-inputSwitch [(ngModel)]="emailNotifications[notificationType]" (onChange)="updateEmailSetting(notificationType, $event.checked)"></p-inputSwitch>
17     </div>
18   </ng-container>
19 </div>