1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 05:15:25 +02:00

feat(oauth): add providers to providers-selector

This commit is contained in:
Chaim Lev Ari 2019-01-25 10:57:40 +02:00
parent c1939f6070
commit 90281fd7f0
4 changed files with 33 additions and 12 deletions

View file

@ -9,9 +9,9 @@
class="form-control"
id="oauth-provider-selector"
ng-model="$ctrl.selectedProvider"
ng-options="provider as provider for provider in $ctrl.providers"
ng-change="$ctrl.onSelect($ctrl.selectedProvider)"
ng-options="provider as provider.name for provider in $ctrl.providers"
>
<option value="">Custom </option>
</select>
</div>
</div>

View file

@ -1,4 +1,20 @@
angular.module('portainer.extensions.oauth')
.component('oauthProvidersSelector', {
templateUrl: 'app/extensions/oauth/components/oauth-providers-selector/oauth-providers-selector.html'
});
angular.module('portainer.extensions.oauth').component('oauthProvidersSelector', {
templateUrl: 'app/extensions/oauth/components/oauth-providers-selector/oauth-providers-selector.html',
bindings: {
onSelect: '<'
},
controller: function oauthProvidersSelectorController() {
this.providers = [
{
name: 'Facebook',
authUrl: 'https://www.facebook.com/v3.2/dialog/oauth',
accessTokenUrl: 'https://graph.facebook.com/v3.2/oauth/access_token',
resourceUrl: 'https://graph.facebook.com/v3.2/me?fields=email',
userIdentifier: 'email'
},
{
name: 'Custom'
}
];
}
});