Merge pull request #207 from eReuse/change/#2825-tags-only-computers

fix change #2825, tags only for Computers
This commit is contained in:
Santiago L 2022-03-04 12:11:43 +01:00 committed by GitHub
commit 0a4b77f48a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1206,6 +1206,7 @@ def create_code_tag(mapper, connection, device):
this tag is the same of devicehub_id.
"""
from ereuse_devicehub.resources.tag.model import Tag
if isinstance(device, Computer):
tag = Tag(device_id=device.id, id=device.devicehub_id)
db.session.add(tag)