feat: printing attributes in cards on dashboard

This commit is contained in:
2025-03-14 11:33:50 +04:00
parent 069bab1c01
commit 0e6563f54d
5 changed files with 9 additions and 0 deletions

View File

@@ -69,6 +69,7 @@ class AttributeService(BaseService):
attribute.label = request.attribute.label
attribute.default_value = default_value
attribute.is_applicable_to_group = request.attribute.is_applicable_to_group
attribute.is_shown_on_dashboard = request.attribute.is_shown_on_dashboard
attribute.is_nullable = request.attribute.is_nullable
attribute.description = request.attribute.description
await self.session.commit()