-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env
115 lines (88 loc) · 5.72 KB
/
.env
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# User API
REACT_APP_SIGN_UP = https://src-website-api.onrender.com/api/v1/signup
REACT_APP_LOGIN_IN = https://src-website-api.onrender.com/api/v1/login
REACT_APP_FORGOT_PASSWORD = https://src-website-api.onrender.com/api/v1/forgot/password/
# Require Auth Token
REACT_APP_RESET_PASSWORD = https://src-website-api.onrender.com/api/v1/reset/password/
#Require Auth
REACT_APP_GET_USER_BY_EMAIL = https://src-website-api.onrender.com/api/v1/email/
# Require Auth
REACT_APP_UPDATE_ROLE_BY_EMAIL = https://src-website-api.onrender.com/api/v1/update/role/
REACT_APP_UPDATE_USER_DETAILS = https://src-website-api.onrender.com/api/v1/update/details/
# Officials API
REACT_APP_CREATE_OFFICIAL = https://src-website-api.onrender.com/api/v1/officials
REACT_APP_GET_OFFICIALS = https://src-website-api.onrender.com/api/v1/officials
REACT_APP_GET_OFFICIAL_BY_ID = https://src-website-api.onrender.com/api/v1/officials/
REACT_APP_GET_OFFICIAL_BY_EMAIL = https://src-website-api.onrender.com/api/v1/official/
REACT_APP_UPDATE_OFFICIAL_BY_EMAILID = https://src-website-api.onrender.com/api/v1/officials/
REACT_APP_DELETE_OFFICIAL_BY_ID = https://src-website-api.onrender.com/api/v1/officials/
# Domain API
# REQUIRE AUTH
REACT_APP_CREATE_DOMAIN = https://src-website-api.onrender.com/api/v1/domain
REACT_APP_GET_DOMAINS = https://src-website-api.onrender.com/api/v1/domains
REACT_APP_GET_DOMAIN_BY_ID = https://src-website-api.onrender.com/api/v1/domain/
# REQUIRE AUTH
REACT_APP_UPDATE_DOMAIN_BY_ID = https://src-website-api.onrender.com/api/v1/domain/
# REQUIRE AUTH
REACT_APP_DELETE_DOMAIN_BY_ID = https://src-website-api.onrender.com/api/v1/domain/
# REQUIRE AUTH
# Resource API
REACT_APP_CREATE_RESOURCE = https://src-website-api.onrender.com/api/v1/resource/
REACT_APP_GET_RESOURCES = https://src-website-api.onrender.com/api/v1/resources
REACT_APP_GET_RESOURCE_BY_ID = https://src-website-api.onrender.com/api/v1/resource/
REACT_APP_GET_RESOURCE_BY_DOMAIN_ID = https://src-website-api.onrender.com/api/v1/resources/
# REQUIRE AUTH
REACT_APP_UPDATE_RESOURCE_BY_ID = https://src-website-api.onrender.com/api/v1/resource/
# REQUIRE AUTH
REACT_APP_DELETE_RESOURCE_BY_ID = https://src-website-api.onrender.com/api/v1/resource/
# Contact Forum API
REACT_APP_CONTACT_FORUM = https://src-website-api.onrender.com/api/v1/contact-forum
REACT_APP_GET_CONTACT_FORUM = https://src-website-api.onrender.com/api/v1/contact-forums
REACT_APP_GET_CONTACT_FORUM_BY_ID = https://src-website-api.onrender.com/api/v1/contact-forum/
REACT_APP_GET_CONTACT_FORUM_BY_DOMAIN_ID = https://src-website-api.onrender.com/api/v1/contact-forums/
REACT_APP_UPDATE_CONTACT_FORUM = https://src-website-api.onrender.com/api/v1/contact-forum/
REACT_APP_DELETE_CONTACT_FORUM = https://src-website-api.onrender.com/api/v1/contact-forum/
# News API
# Require AuthToken
REACT_APP_GET_NEWS = https://src-website-api.onrender.com/api/v1/news
REACT_APP_CREATE_NEWS = https://src-website-api.onrender.com/api/v1/create/news
REACT_APP_UPDATE_NEWS = https://src-website-api.onrender.com/api/v1/update/news/
REACT_APP_DELETE_NEWS = https://src-website-api.onrender.com/api/v1/delete/news/
# Project API
# Require AuthToken
REACT_APP_GET_ALL_PROJECTS = https://src-website-api.onrender.com/api/v1/projects
REACT_APP_CREATE_PROJECT = https://src-website-api.onrender.com/api/v1/project
REACT_APP_UPDATE_PROJECT = https://src-website-api.onrender.com/api/v1/project/
REACT_APP_DELETE_PROJECT = https://src-website-api.onrender.com/api/v1/project/
# User Profiles
REACT_APP_GET_ALL_USER_PROFILES = https://src-website-api.onrender.com/api/v1/profiles
REACT_APP_GET_USER_PROFILE_BY_EMAIL = https://src-website-api.onrender.com/api/v1/profiles/email/
REACT_APP_UPDATE_USER_DETAILS_BY_ID_DONE_BY_USER = https://src-website-api.onrender.com/api/v1/profiles/update/
# Events API
REACT_APP_GET_EVENTS = https://src-website-api.onrender.com/api/v1/events
REACT_APP_GET_EVENT_BY_ID = https://src-website-api.onrender.com/api/v1/events/
REACT_APP_GET_DELETE_BY_ID = https://src-website-api.onrender.com/api/v1/events/
REACT_APP_GET_UPDATE_BY_ID = https://src-website-api.onrender.com/api/v1/events/
REACT_APP_ADD_EVENT = https://src-website-api.onrender.com/api/v1/events
# Testimonials API
REACT_APP_GET_ALL_TESTIMONIALS = https://src-website-api.onrender.com/api/v1/testimonials
REACT_APP_ADD_TESTIMONIAL = https://src-website-api.onrender.com/api/v1/testimonials/create
REACT_APP_UPDATE_TESTIMONIAL = https://src-website-api.onrender.com/api/v1/testimonials/update/
REACT_APP_DELETE_TESTIMONIAL = https://src-website-api.onrender.com/api/v1/testimonials/delete/
# Officials API
REACT_APP_GET_ALL_oFFICIALS = https://src-website-api.onrender.com/api/v1/officials
REACT_APP_GET_OFFICIAL_BY_ID = https://src-website-api.onrender.com/api/v1/officials/
REACT_APP_GET_OFFICIAL_BY_EMAIL = https://src-website-api.onrender.com/api/v1/officials/
REACT_APP_ADD_OFFICIAL = https://src-website-api.onrender.com/api/v1/officials
REACT_APP_UPDATE_OFFICIAL = https://src-website-api.onrender.com/api/v1/officials/
REACT_APP_DELETE_OFFICIAL = https://src-website-api.onrender.com/api/v1/officials/
# Carousel API
REACT_APP_GET_ALL_CAROUSEL = https://src-website-api.onrender.com/api/v1/carousel
REACT_APP_ADD_CAROUSEL = https://src-website-api.onrender.com/api/v1/carousel
REACT_APP_UPDATE_CAROUSEL = https://src-website-api.onrender.com/api/v1/carousel/
REACT_APP_DELETE_CAROUSEL = https://src-website-api.onrender.com/api/v1/carousel/
# Feedback API
REACT_APP_ADD_FEEDBACK = https://src-website-api.onrender.com/api/v1/CR/feedback
REACT_APP_GET_ALL_FEEDBACKS = https://src-website-api.onrender.com/api/v1/allFeedbacks
REACT_APP_GET_FEEDBACK_BY_FILTER = https://src-website-api.onrender.com/api/v1/feedback
REACT_APP_GET_FEEDBACK_COLLECTION_BY_FILTER = https://src-website-api.onrender.com/api/v1/feedbacks