mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-02 07:27:04 +00:00
repair access log -bug
This commit is contained in:
@@ -153,7 +153,7 @@ class DirentGridView extends React.Component{
|
|||||||
this.onCreateFileToggle(currentObject);
|
this.onCreateFileToggle(currentObject);
|
||||||
break;
|
break;
|
||||||
case 'Access Log':
|
case 'Access Log':
|
||||||
this.onAccessLog();
|
this.onAccessLog(currentObject);
|
||||||
break;
|
break;
|
||||||
case 'Open via Client':
|
case 'Open via Client':
|
||||||
this.onOpenViaClient(currentObject);
|
this.onOpenViaClient(currentObject);
|
||||||
@@ -245,8 +245,10 @@ class DirentGridView extends React.Component{
|
|||||||
location.href = url;
|
location.href = url;
|
||||||
}
|
}
|
||||||
|
|
||||||
onAccessLog = () => {
|
onAccessLog = (currentObject) => {
|
||||||
|
let filePath = this.getDirentPath(currentObject);
|
||||||
|
let path = siteRoot + 'repo/file-access/' + this.props.repoID + '/?p=' + encodeURIComponent(filePath) ;
|
||||||
|
window.open(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
onOpenViaClient = (currentObject) => {
|
onOpenViaClient = (currentObject) => {
|
||||||
@@ -449,7 +451,7 @@ class DirentGridView extends React.Component{
|
|||||||
menuList.push(COMMENT);
|
menuList.push(COMMENT);
|
||||||
}
|
}
|
||||||
menuList.push(HISTORY);
|
menuList.push(HISTORY);
|
||||||
if (fileAuditEnabled) {
|
if (isPro && fileAuditEnabled) {
|
||||||
menuList.push(ACCESS_LOG);
|
menuList.push(ACCESS_LOG);
|
||||||
}
|
}
|
||||||
menuList.push('Divider');
|
menuList.push('Divider');
|
||||||
|
@@ -506,7 +506,7 @@ class DirentListView extends React.Component {
|
|||||||
menuList.push(COMMENT);
|
menuList.push(COMMENT);
|
||||||
}
|
}
|
||||||
menuList.push(HISTORY);
|
menuList.push(HISTORY);
|
||||||
if (fileAuditEnabled) {
|
if (isPro && fileAuditEnabled) {
|
||||||
menuList.push(ACCESS_LOG);
|
menuList.push(ACCESS_LOG);
|
||||||
}
|
}
|
||||||
menuList.push('Divider');
|
menuList.push('Divider');
|
||||||
|
@@ -109,7 +109,7 @@ class MutipleDirOperationToolbar extends React.Component {
|
|||||||
return menu !== RELATED_FILES;
|
return menu !== RELATED_FILES;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (!fileAuditEnabled) {
|
if (!isPro || !fileAuditEnabled) {
|
||||||
menuList = menuList.filter(menu => {
|
menuList = menuList.filter(menu => {
|
||||||
return menu !== ACCESS_LOG;
|
return menu !== ACCESS_LOG;
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user