-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathschemaType.js
More file actions
63 lines (62 loc) · 1.97 KB
/
Copy pathschemaType.js
File metadata and controls
63 lines (62 loc) · 1.97 KB
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
/** MONGODB SCHEMA TYPE **/
const SCHEMA_TYPE = {
TIMESHEET: "timesheets",
HISTORY: "history",
USERID: "userId",
MILESTONE: "milestone",
USERS: "users",
ADMIN_DETAIL: "adminDetail",
WASABICREDENTIALS: "wasabicredentials",
PROJECT_MAIN_TEMPLATES: "ProjectTemplate",
TIMETRACKER_DOWNLOAD: "timeTrackerDownload",
COMPANIES: "companies",
PROJECT_TEMPLATES: "project_templates",
PROJECT_TAB_COMPONENTS: "project_tab_components",
PROJECT_STATUS_TEMPLATES: "project_status_template",
TASK_TYPE_TEMPLATES: "task_type_templates",
TASK_STATUS_TEMPLATES: "task_status_templates",
TEAMS_MANAGEMENT: "teams_management",
COMPANY_USERS: "company_users",
RULES: "rules",
ESTIMATES_TIME: "estimated_time",
CURRENCY_LIST: "currency_list",
PROJECTS: "projects",
SETTINGS: "settings",
APPS: "apps",
NOTIFICATIONS: "notifications",
NOTIFICATIONS_SETTINGS: "notifications_settings",
MENTIONS: "mentions",
TASKS: "tasks",
COMMON:"common",
MAIN_CHATS: "main_chats",
GOLBAL : "global",
COMMENTS: "comments",
PROJECT_RULES:"projectRules",
SUBSCRIPTIONPLAN: "subscriptionPlan",
PLANFEATURE: "planFeature",
PLANFEATUREDISPLAY: "planFeatureDisplay",
SUBSCRIPTIONS: 'subscriptions',
INVOICES: 'invoices',
CREDITNOTES: 'creditNotes',
PRECOMPANIES: 'preCompanies',
CUSTOM_FIELDS: "customField",
SPRINTS:"sprints",
FOLDERS: "folders",
RESTRICTED_EXTENSIONS: "restrictedExtensions",
GLOBAL_CUSTOM_FIELDS: "global_custom_fields",
TOURS: "tours",
BUCKETS: "buckets",
GLOBALFILTER:'global_filter',
HOURLY_MILESTONE_WEEKLY_RANGE:'hourly_milestone_weekly_range',
USER_AUTH: "userAuth",
RESET_ATTEMPT: "resetAttempt",
SESSIONS: "sessions",
USERDASHBOARD:'userDashboard',
REFERCODE: "refferalcodes",
REFFERALMAPPING: "refferalmapping",
GLOBALSETTING: "globalSetting",
RECENTVISITS: "recentVisits",
}
module.exports = {
SCHEMA_TYPE
};