Search code examples
angularjsmeanjs

ng-show only for admin in meanjs.


In view.article.view.html i want to show html tag only if the authenticated user is admin. I tried to do so like below, but it did not work.

<p ng-show="vm.authentication.user.roles=admin">show only for admin </p>

Solution

  • ng-show="vm.authentication.user.roles=admin"

    should be

    ng-show="vm.authentication.user.roles=='admin'" or ===