Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
const constants = require('./constants');
const {
PRIVATE_COMMUNITY_WITH_JOIN_TOKEN_ID,
PAYMENTS_COMMUNITY_ID,
} = constants;
module.exports = [
{
id: 1,
communityId: PRIVATE_COMMUNITY_WITH_JOIN_TOKEN_ID,
brandedLogin: {
isEnabled: false,
message: null,
},
slackSettings: {
connectedAt: null,
connectedBy: null,
teamName: null,
teamId: null,
scope: null,
token: null,
invitesSentAt: null,
invitesMemberCount: null,
invitesCustomMessage: null,
},
joinSettings: {
tokenJoinEnabled: true,
token: 'abc',
},
},
{
id: 2,
communityId: PAYMENTS_COMMUNITY_ID,
brandedLogin: {
isEnabled: false,
message: null,
},
slackSettings: {
connectedAt: null,
connectedBy: null,
teamName: null,
teamId: null,
scope: null,
token: null,
invitesSentAt: null,
invitesMemberCount: null,
invitesCustomMessage: null,
},
joinSettings: {
tokenJoinEnabled: true,
token: 'abc',
},
},
];