repo.or.cz
/
gitter.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Gitter migration: Setup redirects (rollout pt. 3)
[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;