Skip to content

Commit 118d405

Browse files
committed
Update PrivacyPolicy.md and PrivacyPolicy.tsx
1 parent 7dbc556 commit 118d405

File tree

2 files changed

+60
-38
lines changed

2 files changed

+60
-38
lines changed

PrivacyPolicy.md

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,44 @@
1-
Privacy Policy
2-
----------------
1+
## Privacy Policy
32

43
### Introduction
5-
Our privacy policy will help you understand what information we collect at Fork, Commit, Merge -web, how Fork, Commit, Merge -web uses it, and what choices you have.
6-
Fork, Commit, Merge -web built the Fork, Commit, Merge -web app as a free app. This SERVICE is provided by Fork, Commit, Merge -web at no cost and is intended for use as is.
7-
If you choose to use our Service, then you agree to the collection and use of information in relation with this policy. The Personal Information that we collect are used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.
8-
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible in our website, unless otherwise defined in this Privacy Policy.
94

10-
### Information Collection and Use
11-
For a better experience while using our Service, we may require you to provide us with certain personally identifiable information, including but not limited to users name, email address, gender, location, pictures. The information that we request will be retained by us and used as described in this privacy policy.
12-
The app does use third party services that may collect information used to identify you.
5+
Welcome to Fork, Commit, Merge (forkcommitmerge.io). This Privacy Policy governs your use of our website. This SERVICE is provided by Fork, Commit, Merge at no cost and is intended for use as is.
136

14-
### Cookies
15-
Cookies are files with small amount of data that is commonly used an anonymous unique identifier. These are sent to your browser from the website that you visit and are stored on your devices’s internal memory.
7+
### Data Collection
168

17-
This Services does not uses these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collection information and to improve their services. You have the option to either accept or refuse these cookies, and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service.
9+
We collect the following data if you choose to login with your Github credentials to our platform:
1810

19-
### Location Information
20-
Some of the services may use location information transmitted from users' mobile phones. We only use this information within the scope necessary for the designated service.
11+
- Username
12+
- Email
13+
- Name
2114

22-
### Device Information
23-
We collect information from your device in some cases. The information will be utilized for the provision of better service and to prevent fraudulent acts. Additionally, such information will not include that which will identify the individual user.
15+
### How We Use Your Data
2416

25-
### Service Providers
26-
We may employ third-party companies and individuals due to the following reasons:
27-
* To facilitate our Service;
28-
* To provide the Service on our behalf;
29-
* To perform Service-related services; or
30-
* To assist us in analyzing how our Service is used.
17+
We use your data to:
3118

32-
We want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose.
19+
- Facilitate your learning experience about contributing to open-source.
20+
- Search for the number of issues you have made in our repository by looking at all the closed (merged) pull requests.
3321

34-
### Security
35-
We value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and we cannot guarantee its absolute security.
22+
### Data Storage
3623

37-
### Changes to This Privacy Policy
38-
We may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately, after they are posted on this page.
24+
Your data is securely stored in MongoDB Atlas database. We do not store your password in our database. We use the OAuth2 protocol to authenticate you with Github.
25+
26+
### Data Sharing
27+
28+
We do not share your data with third parties. We do not sell your data to third parties. We do not use your data for marketing purposes.
29+
30+
### Cookie Policy
31+
32+
We do not use cookies on our website.
33+
34+
### Changes To This Privacy Policy
35+
36+
We may update this Privacy Policy in the future. You are advised to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately after they are posted on this page.
3937

4038
### Contact Us
39+
4140
If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us.
41+
4242
#### Contact Information:
43+
4344

pages/privacy-policy.tsx

Lines changed: 32 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,52 +11,73 @@ const PrivacyPolicy: React.FC = () => {
1111
<p className="pb-3">
1212
Welcome to Fork, Commit, Merge (forkcommitmerge.io).
1313
This Privacy Policy governs your use of our website.
14+
This SERVICE is provided by Fork, Commit, Merge at
15+
no cost and is intended for use as is.
1416
</p>
1517

1618
<h2 className="pb-2 text-2xl">2. Data Collection</h2>
1719
<p className="pb-1">
18-
We collect the following data when you use our
19-
platform:
20+
We collect the following data if you choose to login
21+
with your Github credentials to our platform:
2022
</p>
2123
<ul>
2224
<li className="pl-4">- Username</li>
2325
<li className="pl-4">- Email</li>
2426
<li className="pl-4">- Name</li>
2527
</ul>
2628

27-
<h2 className="pb-2 text-2xl">3. How We Use Your Data</h2>
29+
<h2 className="pb-2 text-2xl">
30+
3. How We Use Your Data
31+
</h2>
2832
<p className="pb-1">We use your data to:</p>
2933
<ul className="pb-2">
3034
<li className="pl-4">
3135
- Facilitate your learning experience about
3236
contributing to open-source.
3337
</li>
3438
<li className="pl-4">
35-
- Search for the number of issues you have made in
36-
our repository by looking at all the closed
39+
- Search for the number of issues you have made
40+
in our repository by looking at all the closed
3741
(merged) pull requests.
3842
</li>
3943
</ul>
4044

4145
<h2 className="pb-2 text-2xl">4. Data Storage</h2>
4246
<p className="pb-3">
4347
Your data is securely stored in MongoDB Atlas
44-
database.
48+
database. We do not store your password in our
49+
database. We use the OAuth2 protocol to authenticate
50+
you with Github.
4551
</p>
4652

4753
<h2 className="pb-2 text-2xl">5. Data Sharing</h2>
48-
<p className="pb-3">We do not share your data with third parties.</p>
54+
<p className="pb-3">
55+
We do not share your data with third parties. We do
56+
not sell your data to third parties. We do not use
57+
your data for marketing purposes.
58+
</p>
4959

5060
<h2 className="pb-2 text-2xl">6. Cookie Policy</h2>
51-
<p className="pb-3">We do not use cookies on our website.</p>
61+
<p className="pb-3">
62+
We do not use cookies on our website.
63+
</p>
5264

53-
<h2 className="pb-2 text-2xl">7. Changes To This Privacy Policy</h2>
54-
<p className="pb-3">We may update this Privacy Policy in the future.</p>
65+
<h2 className="pb-2 text-2xl">
66+
7. Changes To This Privacy Policy
67+
</h2>
68+
<p className="pb-3">
69+
We may update this Privacy Policy in the future. You
70+
are advised to review this page periodically for any
71+
changes. We will notify you of any changes by
72+
posting the new Privacy Policy on this page. These
73+
changes are effective immediately after they are
74+
posted on this page.
75+
</p>
5576

5677
<h2 className="pb-2 text-2xl">8. Contact Us</h2>
5778
<p className="pb-3">
5879
If you have any questions about this Privacy Policy,
59-
please contact us by email:{" "}[email protected]
80+
please contact us by email: [email protected]
6081
</p>
6182
</div>
6283
</div>

0 commit comments

Comments
 (0)