Remove old perms utils
This commit is contained in:
parent
e36d327f36
commit
6bc5ddfeb0
4 changed files with 0 additions and 28 deletions
|
@ -1,3 +0,0 @@
|
||||||
export default function userCanAdd(role) {
|
|
||||||
return (role === 'W') || (role === 'A');
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
export default function userCanEdit(currentUser, author) {
|
|
||||||
let id = currentUser.id;
|
|
||||||
let role = currentUser.role;
|
|
||||||
return (role === 'W' && (+id === author)) || (role === 'A');
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
import userCanAdd from '../../../utils/user-can-add';
|
|
||||||
import { module, test } from 'qunit';
|
|
||||||
|
|
||||||
module('Unit | Utility | user can add');
|
|
||||||
|
|
||||||
// Replace this with your real tests.
|
|
||||||
test('it works', function(assert) {
|
|
||||||
var result = userCanAdd();
|
|
||||||
assert.ok(result);
|
|
||||||
});
|
|
|
@ -1,10 +0,0 @@
|
||||||
import userCanEdit from '../../../utils/user-can-edit';
|
|
||||||
import { module, test } from 'qunit';
|
|
||||||
|
|
||||||
module('Unit | Utility | user can edit');
|
|
||||||
|
|
||||||
// Replace this with your real tests.
|
|
||||||
test('it works', function(assert) {
|
|
||||||
var result = userCanEdit();
|
|
||||||
assert.ok(result);
|
|
||||||
});
|
|
Reference in a new issue