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