mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
290 B
JavaScript
11 lines
290 B
JavaScript
Template.configureLoginServiceDialogForGoogle.siteUrl = function () {
|
|
return Meteor.absoluteUrl();
|
|
};
|
|
|
|
Template.configureLoginServiceDialogForGoogle.fields = function () {
|
|
return [
|
|
{property: 'clientId', label: 'Client ID'},
|
|
{property: 'secret', label: 'Client secret'}
|
|
];
|
|
};
|