mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Simplify an internal data model used in the importer
We used to save the whole user document in a internal data structure while we only needed the userId.
This commit is contained in:
parent
a13fad749e
commit
b5ebbd2bf9
2 changed files with 14 additions and 15 deletions
|
|
@ -23,14 +23,14 @@ template(name="importMapMembers")
|
|||
p {{_ 'import-members-map'}}
|
||||
.mapping-list
|
||||
each members
|
||||
a.mapping-item.js-select-member(class="{{#if wekan}}filled{{/if}}")
|
||||
a.mapping-item.js-select-member(class="{{#if wekanId}}filled{{/if}}")
|
||||
.profile-source
|
||||
.full-name= fullName
|
||||
.username
|
||||
| ({{username}})
|
||||
.wekan
|
||||
if wekan
|
||||
+userAvatar(userId=wekan._id)
|
||||
if wekanId
|
||||
+userAvatar(userId=wekanId)
|
||||
else
|
||||
a.member.add-member
|
||||
i.fa.fa-plus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue