mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
15 lines
488 B
JavaScript
15 lines
488 B
JavaScript
import {helper} from '@ember/component/helper';
|
|
|
|
// Handlebars Helper {{gh-user-can-admin}} group users by admin and owner using if, or group them author using unless
|
|
// Usage: call helper as with aparameter of session.user
|
|
// e.g - {{#if (gh-user-can-admin session.user)}} 'block content' {{/if}}
|
|
// @param session.user
|
|
|
|
export function ghUserCanAdmin(params) {
|
|
return !!(params[0].isOwnerOrAdmin);
|
|
}
|
|
|
|
export default helper(function (params) {
|
|
return ghUserCanAdmin(params);
|
|
});
|