The communications platform that puts data protection first.
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.
 
 
 
 
 
Rocket.Chat/packages/rocketchat-oauth2-server-co.../server/oauth/default-services.js

17 lines
423 B

import { OAuthApps } from 'meteor/rocketchat:models';
if (!OAuthApps.findOne('zapier')) {
OAuthApps.insert({
_id: 'zapier',
name: 'Zapier',
active: true,
clientId: 'zapier',
clientSecret: 'RTK6TlndaCIolhQhZ7_KHIGOKj41RnlaOq_o-7JKwLr',
redirectUri: 'https://zapier.com/dashboard/auth/oauth/return/RocketChatDevAPI/',
_createdAt: new Date,
_createdBy: {
_id: 'system',
username: 'system',
},
});
}