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