Skip to content

Commit

Permalink
feat: Removing Push Notifications in Settings (#2475)
Browse files Browse the repository at this point in the history
* removed push notifications

* removed notification column

---------

Co-authored-by: Jay Budhadev <[email protected]>
  • Loading branch information
jayfyle and Jay Budhadev authored Oct 11, 2023
1 parent e275965 commit 4e75133
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions src/app/fyle/notifications/notifications.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ <h2>Delegatee Notification</h2>
<ion-col>
<div><strong>{{ feature.value.textLabel }}</strong></div>
</ion-col>
<ion-col size="2" *ngIf="$first && (orgUserSettings$|async)?.notification_settings?.push.enabled">
<mat-checkbox
[checked]="isAllSelected.pushEvents"
(change)="toggleAllSelected('push')"
></mat-checkbox>
<mat-icon svgIcon="fy-iphone" class="notifications--notif-type-icon"></mat-icon>
</ion-col>
<ion-col size="2" *ngIf="$first">
<mat-checkbox
[checked]="isAllSelected.emailEvents"
Expand All @@ -54,11 +47,7 @@ <h2>Delegatee Notification</h2>
<ion-col>
<div class="notifications--event-label">{{ event.textLabel }}</div>
</ion-col>
<ion-col size="2" *ngIf="(orgUserSettings$|async)?.notification_settings?.push.enabled">
<div formArrayName="pushEvents">
<mat-checkbox formControlName="{{i}}"></mat-checkbox>
</div>
</ion-col>

<ion-col size="2">
<div formArrayName="emailEvents">
<mat-checkbox formControlName="{{i}}"></mat-checkbox>
Expand Down

0 comments on commit 4e75133

Please sign in to comment.