Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Merge requests
!58
REL: prepare release 0.7.2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
REL: prepare release 0.7.2
release-0.7.2
into
main
Overview
0
Commits
107
Pipelines
3
Changes
2
Merged
Timm Fitschen
requested to merge
release-0.7.2
into
main
3 years ago
Overview
0
Commits
107
Pipelines
3
Changes
2
Expand
0
0
Merge request reports
Viewing commit
2edfcff6
Prev
Next
Show latest version
2 files
+
79
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Verified
2edfcff6
TST: more unit tests for Retrieve transactions
· 2edfcff6
Timm Fitschen
authored
3 years ago
src/main/java/org/caosdb/server/transaction/Retrieve.java
+
1
−
1
Options
@@ -79,7 +79,7 @@ public class Retrieve extends Transaction<RetrieveContainer> {
protected
void
postTransaction
()
{
// generate Error for missing RETRIEVE:ENTITY Permission.
for
(
final
EntityInterface
e
:
getContainer
())
{
if
(
e
.
getEntity
ACL
()
!=
null
)
{
if
(
e
.
getEntity
Status
()
!=
EntityStatus
.
NONEXISTENT
)
{
try
{
e
.
checkPermission
(
EntityPermission
.
RETRIEVE_ENTITY
);
}
catch
(
final
AuthorizationException
exc
)
{
Loading