mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
397 B
JavaScript
11 lines
397 B
JavaScript
import { getSetting } from 'meteor/nova:core';
|
|
import Users from 'meteor/nova:users';
|
|
import { T9n } from 'meteor/softwarerero:accounts-t9n';
|
|
|
|
Users.avatar.setOptions({
|
|
"gravatarDefault": "mm",
|
|
"defaultImageUrl": "http://www.gravatar.com/avatar/00000000000000000000000000000000?d=mm&f=y"
|
|
});
|
|
|
|
// https://github.com/softwarerero/meteor-accounts-t9n
|
|
T9n.setLanguage(getSetting("locale", "en"));
|