Skip to content

Commit

Permalink
remove prefix from the i18n strings (not sorted)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchoeler committed Jun 13, 2017
1 parent 3924363 commit ba35741
Show file tree
Hide file tree
Showing 2 changed files with 146 additions and 170 deletions.
4 changes: 2 additions & 2 deletions packages/rocketchat-authorization/client/views/permissions.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Template.permissions.helpers({
},

permissionName() {
return `permission_${ this._id }`;
return `${ this._id }`;
},

permissionDescription() {
return `permission_${ this._id }_description`;
return `${ this._id }_description`;
},

hasPermission() {
Expand Down
Loading

0 comments on commit ba35741

Please sign in to comment.