Find or create assets tags on import, fixes #2439#2445
Merged
tomgreenfield merged 4 commits intorelease/bugpatchfrom Oct 22, 2019
Merged
Find or create assets tags on import, fixes #2439#2445tomgreenfield merged 4 commits intorelease/bugpatchfrom
tomgreenfield merged 4 commits intorelease/bugpatchfrom
Conversation
Contributor
|
I am getting error When I try to import a course which contains a single asset with a tag. Adding After adding this line I have tested and this works well. |
Contributor
|
If it's just that file, might be worth changing the one Underscore reference to something in the current spec: i.e. data = { ...data, ...withMeta };or data = Object.assign(data, fromMeta); |
Contributor
Object.assign(data, fromMeta); |
taylortom
approved these changes
Oct 18, 2019
| app.contentmanager.getContentPlugin('tag', function(error, plugin) { | ||
| if(!error) { | ||
| plugin.create({ title: tag.title}, function(error, record) { | ||
| if(error) logger.log('warn', 'Failed to create asset tag: ' + (tag.title || '') + ' ' + error); |
Member
There was a problem hiding this comment.
Do we need to return early if an error is returned by the cb? Assuming the next line would fail if the record isn't there.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Apply tags from assets.json for each asset.