core: bug fix

pull/272/head
undefined 3 years ago
parent 9a6d737a4b
commit 62246b096a

@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "3.2.18",
"version": "3.2.19",
"bin": "bin/hydrooj.js",
"main": "src/loader",
"module": "src/loader",

@ -125,6 +125,7 @@ class RecordDetailHandler extends Handler {
let canViewCode = rdoc.uid === this.user._id;
canViewCode ||= this.user.hasPriv(PRIV.PRIV_READ_RECORD_CODE);
canViewCode ||= this.user.hasPerm(PERM.PERM_READ_RECORD_CODE);
canViewCode ||= this.user.hasPerm(PERM.PERM_READ_RECORD_CODE_ACCEPT) && self?.status === STATUS.STATUS_ACCEPTED;
if (!canViewCode) {
rdoc.code = '';
@ -285,6 +286,7 @@ class RecordDetailConnectionHandler extends ConnectionHandler {
let canViewCode = rdoc.uid === this.user._id;
canViewCode ||= this.user.hasPriv(PRIV.PRIV_READ_RECORD_CODE);
canViewCode ||= this.user.hasPerm(PERM.PERM_READ_RECORD_CODE);
canViewCode ||= this.user.hasPerm(PERM.PERM_READ_RECORD_CODE_ACCEPT) && self?.status === STATUS.STATUS_ACCEPTED;
if (!canViewCode) {
rdoc.code = '';

Loading…
Cancel
Save