You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const providers = {
|
|
oauth: [],
|
|
share: [],
|
|
payment: [],
|
|
push: []
|
|
}
|
|
|
|
if (qa.canIUse('getAccountProvider')) {
|
|
providers.oauth.push(qa.getAccountProvider())
|
|
}
|
|
|
|
if (qa.canIUse('getVendorPaymentProvider')) {
|
|
providers.payment.push(qa.getVendorPaymentProvider())
|
|
}
|
|
|
|
export default providers
|
|
|