aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/moderation/user-moderation-dropdown.component.html
blob: 7367a7e59e13618d5244980d76a4a0567bf25e2a (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"
  ></my-action-dropdown>
</ng-container>