21 lines
657 B
JavaScript
21 lines
657 B
JavaScript
/* global Comments */
|
|
|
|
// Client and Server
|
|
Comments.config({
|
|
rating: 'likes-and-dislikes',
|
|
allowAnonymous: () => false,
|
|
allowReplies: () => false, // disabled right now: I don't know hot to get referenceId of replies
|
|
anonymousSalt: 'klasddl3lala0l3lasdlas0ol3lasdlao3lasdoaslaldal3lasdclasdlal3lasdladlaq',
|
|
publishUserFields: {
|
|
profile: 1
|
|
},
|
|
mediaAnalyzers: [
|
|
Comments.analyzers.image,
|
|
Comments.analyzers.youtube
|
|
],
|
|
generateUsername: function genUser(user) {
|
|
// console.log(JSON.stringify(user));
|
|
// FIXME
|
|
return user.profile && user.profile.name && user.profile.name.first ? user.profile.name.first : '';
|
|
}
|
|
});
|