Skip to content

Commit 15fd915

Browse files
committed
isVerified
1 parent 4e25551 commit 15fd915

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/controllers/admin/users/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export default class extends Controller.extend(EmberTableControllerMixin) {
8787
headerComponent : 'tables/headers/sort',
8888
cellComponent : 'ui-table/cell/admin/users/cell-user-verify',
8989
actions : {
90-
toggleVerify : this.toggleVerify.bind(this)
90+
toggleVerify: this.toggleVerify.bind(this)
9191
}
9292
}
9393
];

app/models/user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default ModelBase.extend({
1212

1313
email : attr('string'),
1414
password : attr('string'),
15-
isVerified : attr('boolean', { readOnly: true }),
15+
isVerified : attr('boolean'),
1616
isSuperAdmin : attr('boolean', { readOnly: true }),
1717
isAdmin : attr('boolean'),
1818
isUserOwner : attr('boolean'),

0 commit comments

Comments
 (0)