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
Merge branch 'hotfix/21.56.9' into master
[gitter.git]
/
server
/
api
/
private
/
avatars
/
gravatar-by-hash.js
blob
f27d3de2972eab5896980f297f30b7d2deeb1e33
1
'use strict';
2
3
var gravatar = require('gitter-web-avatars/server/gravatar');
4
5
module.exports = function(md5, size) {
6
return {
7
url: gravatar.forChecksum(md5, size),
8
longTermCachable: true
9
};
10
};