<player-list>

  • module
bitballs/components/player/list

{Module}

 

Provides links to the existing Players. Enables logged in admin users to create, update, and destroy Players.

<player-list {is-admin} />

Renders a list of Player models.

Parameters

  1. is-admin {Boolean}

    Configures whether or not admin specific features are enabled.

To create a <player-list> element pass a boolean like bitballs/app.prototype.isAdmin:

<player-list
    {is-admin}="app.isAdmin" />

Example