Vulcan/packages/telescope-users/lib/client/templates/user_profile.js
2015-09-17 14:51:14 +09:00

7 lines
No EOL
213 B
JavaScript

Template.user_profile.onCreated(function () {
var user = this.data.user;
Telescope.SEO.set({
title: user.getDisplayName(),
description: i18n.t('the_profile_of') + ' ' + user.getDisplayName()
});
});