-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathindex.js
73 lines (68 loc) · 2.96 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* eslint-disable linebreak-style */
/* eslint-disable max-len */
/* eslint-disable object-curly-spacing */
/* eslint-disable eol-last */
/** *********************************************************
* Copyright (C) 2022
* Worktez
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the MIT License
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the MIT License for more details.
***********************************************************/
const admin = require("firebase-admin");
if (admin.apps.length === 0) {
admin.initializeApp();
}
const { users } = require("./model/users/users");
const { tasks } = require("./model/tasks/tasks");
const { organization } = require("./model/organization/organization");
const { teams } = require("./model/teams/teams");
const { sprints } = require("./model/sprints/sprints");
const { patch } = require("./model/patch/patch");
const { tasksEvaluation } = require("./model/tasksEvaluation/tasksEvaluation");
const { performanceChart } = require("./model/performanceChart/performanceChart");
const { activity } = require("./model/activity/activity");
const { librarian } = require("./model/librarian/librarian");
const { notifications } = require("./model/notifications/notifications");
const { contributors } = require("./model/contributors/contributors");
const { scheduledFn, scheduledFnManually } = require("./model/scheduledFunctions/scheduledFn");
const { linker } = require("./model/linker/linker");
const { quickNotes } = require("./model/quickNotes/quickNotes");
const { socialPage } = require("./model/socialPage/socialPage");
const { milestone } = require("./model/milestone/milestone");
const { filters } = require("./model/filters/filters");
const { requestDemo } = require("./model/requestDemo/requestDemo");
const { meet } = require("./model/meet/meet");
const { payment } = require("./model/payment/payment");
const { subscriptions } = require("./model/subscriptions/subscriptions");
const { scheduledSubFnManually } = require("./model/scheduledCheckSub/scheduledCheckSub");
exports.users = users;
exports.tasks = tasks;
exports.organization = organization;
exports.teams = teams;
exports.sprints = sprints;
exports.patch = patch;
exports.tasksEvaluation = tasksEvaluation;
exports.performanceChart = performanceChart;
exports.activity = activity;
exports.librarian = librarian;
exports.notifications = notifications;
exports.contributors = contributors;
exports.scheduledFn = scheduledFn;
exports.linker = linker;
exports.quickNotes = quickNotes;
exports.socialPage = socialPage;
exports.scheduledFnManually = scheduledFnManually;
exports.milestone = milestone;
exports.filters = filters;
exports.requestDemo = requestDemo;
exports.meet = meet;
exports.payment = payment;
exports.subscriptions = subscriptions;
exports.scheduledSubFnManually = scheduledSubFnManually;