-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
feat: add resource transfer logic to support different ACL strategy #607
Conversation
|
||
public function __construct(ClassCopierInterface $taoClassCopier) | ||
public function __construct(ClassCopierInterface $taoClassCopier, Ontology $ontology) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Use only ResourceTransferInterface instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
composer.json
Outdated
@@ -67,7 +67,7 @@ | |||
"require": { | |||
"oat-sa/oatbox-extension-installer": "~1.1||dev-master", | |||
"oat-sa/generis": ">=15.22", | |||
"oat-sa/tao-core": ">=50.26.0", | |||
"oat-sa/tao-core": "dev-feat/RFE-530/integration-branch as 52.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Use proper version after release
b6c7ccb
to
947c95f
Compare
Codecov Report
@@ Coverage Diff @@
## develop #607 +/- ##
=============================================
+ Coverage 14.64% 15.72% +1.08%
Complexity 553 553
=============================================
Files 50 49 -1
Lines 1530 1666 +136
=============================================
+ Hits 224 262 +38
- Misses 1306 1404 +98
... and 29 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
composer.json
Outdated
"oat-sa/generis": ">=15.22", | ||
"oat-sa/tao-core": ">=50.26.0", | ||
"oat-sa/generis": ">=15.23", | ||
"oat-sa/tao-core": "dev-feat/RFE-530/integration-branch as v52.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Don't forget to update this :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Pull request title and description are meaningful
- Pull request's target is not
master
- Commits are following conventional commits
- New code is covered by tests (if applicable)
- New code is respecting code style rules
- New code is respecting best practices
- New code is not subject to concurrency issues (if applicable)
- Feature is working correctly on my local machine (if applicable)
- Tests are running successfully (old and new ones) on my local machine (if applicable)
- Acceptance criteria are respected
- Kitchen links are not exposed in the description
- Run composer locally is working
- Updated instance with old composer works
- No unnecessary dependencies are installed
- All required dependencies were installed or updated
- Target branch is correct
- Change log provided
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- New code is covered by tests (if applicable)
- Tests are running successfully (old and new ones) on my local machine (if applicable)
- New code is respecting code style rules
- New code is respecting best practices
- New code is not subject to concurrency issues (if applicable)
- Feature is working correctly on my local machine (if applicable)
- Acceptance criteria are respected
- Pull request title and description are meaningful
- Pull request's target is not
master
- Commits are following conventional commits
- Commits messages are meaningful
- Commits are atomic
- Changelog is updated according to changes (if applicable)
- Documentation is updated according to changes (if applicable)
Version
There are 0 BREAKING CHANGE, 1 feature, 0 fix |
https://oat-sa.atlassian.net/browse/RFE-530
https://oat-sa.atlassian.net/browse/ADF-1424
https://oat-sa.atlassian.net/browse/ADF-1425
https://oat-sa.atlassian.net/browse/ADF-1426
https://oat-sa.atlassian.net/browse/ADF-1427
Goal
Add dynamic ACL strategy to
Move to
andCopy to
featuresHow to test
Related PRs