repo.or.cz
/
gitter.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'hotfix/21.56.9' into master
[gitter.git]
/
server
/
serializers
/
rest
/
fingerprint-strategy.js
blob
8de4241ffb26e4f149e6770e5ffe8765f80fbe41
1
'use strict'
;
2
3
class
FingerprintStrategy
{
4
preload
() {}
5
6
map
(
item
) {
7
return
{
8
id
:
item
.
id
||
item
.
_id
,
9
userId
:
item
.
userId
,
10
fingerprints
:
item
.
fingerprints
11
};
12
}
13
}
14
15
module
.
exports
=
FingerprintStrategy
;