We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After upgrading an OJS 2.4 installation to 3.1.1, the 'Notes' tab of the 'Editorial History' does not have links to files attached to the old notes.
It seems this has been already reported (#1932) and fixed (8170fa2) but then mostly lost during #2163 (specifically 6027981).
When I try to reintroduce a DownloadFileLinkAction as a template variable on these notes, the link fails with the message:
DownloadFileLinkAction
The current role does not have access to this operation
Files of notes are not attached to a particular workflow stage. But the file access policy requires one or the access is denied.
The text was updated successfully, but these errors were encountered:
@ptrckb, would you mind attaching a patch for the code change to re-add DownloadFileLinkAction?
Sorry, something went wrong.
@asmecher This patch for pkp-lib re-adds the links to the notes in Editorial History.
And they do work with pkp-lib up until fd81601 (ojs pkp/ojs@73a8f07). After that they fail with the message:
The current role does not have access to this operation.
You can create a dummy note file on a recent installation with:
INSERT INTO submission_files (submission_id,original_file_name,assoc_type,assoc_id,revision,file_type,file_size,file_stage,date_uploaded,date_modified) VALUES (<SUBMISSIONID>, 'myfile', '520', <NOTEID>,1,'text/plain',1,3,'2019-1-01','2019-01-01');
after replacing <SUBMISSIONID> and <NOTEID>.
<SUBMISSIONID>
<NOTEID>
Closing this as outdated. If you need help with a similar problem, please post in our community support forum.
No branches or pull requests
After upgrading an OJS 2.4 installation to 3.1.1, the 'Notes' tab of the 'Editorial History' does not have links to files attached to the old notes.
It seems this has been already reported (#1932) and fixed (8170fa2) but then mostly lost during #2163 (specifically 6027981).
When I try to reintroduce a
DownloadFileLinkAction
as a template variable on these notes, the link fails with the message:Files of notes are not attached to a particular workflow stage. But the file access policy requires one or the access is denied.
The text was updated successfully, but these errors were encountered: