aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/moderation/user-moderation-dropdown.component.html
blob: adb672322c844c7635acfa2ac6b4a5028f7f0703 (plain) (blame)
1
2
3
4
5
6
7
8
<ng-container *ngIf="userActions.length !== 0">
  <my-user-ban-modal #userBanModal (userBanned)="onUserBanned()"></my-user-ban-modal>

  <my-action-dropdown
    [actions]="userActions" [entry]="{ user: user, account: account }"
    [buttonSize]="buttonSize" [placement]="placement" [label]="label"
  ></my-action-dropdown>
</ng-container>