AA
This commit is contained in:
parent
0ffc4bb217
commit
83ec4c0475
55
PRIVACY.md
Normal file
55
PRIVACY.md
Normal file
|
@ -0,0 +1,55 @@
|
|||
Privacy Policy for KCA SecuriNet
|
||||
|
||||
Last Updated: 8/1/2024*
|
||||
|
||||
Introduction
|
||||
|
||||
Welcome to KCA SecuriNet, an alarm monitoring service developed by KCA Development. Your privacy is of utmost importance to us, and this Privacy Policy outlines the types of data we collect, how it is used, and your rights regarding your data.
|
||||
|
||||
Data Collection and Storage
|
||||
|
||||
Data We Collect and Store:
|
||||
- Phone Number: Used for account setup, authentication, and notifications.
|
||||
- Discord User ID: Used for integration with Discord for alerts and notifications.
|
||||
|
||||
Data We Collect and Do Not Store:
|
||||
- Roblox Place ID: Collected during service usage but not stored.
|
||||
|
||||
|
||||
Anonymously Stored Data:
|
||||
- Number of Activations: Tally of service activations, stored anonymously.
|
||||
- Places It Is In: Tally on the Place ID, stored anonymously.
|
||||
|
||||
Data Usage
|
||||
|
||||
We use the collected data to improve and maintain our services. Anonymized data may be used for advertising purposes, such as showcasing the number of activations or user counts (e.g., "100,000 Activations, 5,000 users").
|
||||
|
||||
Data Protection and Sharing
|
||||
|
||||
- No Data Selling: We do not sell your data.
|
||||
- No Third-Party Access: Third parties cannot access your data.
|
||||
- No Advertising Purposes: Your data is not sold for advertising purposes.
|
||||
|
||||
Your Rights
|
||||
|
||||
- Request Data Copy: You may request a copy of your data at any time by contacting us.
|
||||
- Account Deletion: If you delete your account, your data will be permanently deleted and will not be recoverable.
|
||||
- Account Security: Your account is accessible only by you; not even KCA Staff can access it.
|
||||
|
||||
Third-Party Services
|
||||
|
||||
When using services provided by LiteNet and TandmX, their respective privacy policies also apply. Please review their policies for more details on how they handle your data.
|
||||
|
||||
Policy Updates
|
||||
|
||||
We may update this Privacy Policy at any time. Any changes will be posted on this page, and we encourage you to review our policy periodically to stay informed about how we are protecting your information.
|
||||
|
||||
Contact Us
|
||||
|
||||
If you have any questions about this Privacy Policy or your data, please contact us at 610-LITENET x1001.
|
||||
|
||||
Manufacturer: KCA Development
|
||||
Product: KCA SecuriNet
|
||||
Product Type: Alarm Monitoring Service**
|
||||
|
||||
By using KCA SecuriNet, you agree to the terms outlined in this Privacy Policy.
|
2
index.js
2
index.js
|
@ -260,7 +260,7 @@ client.on("interactionCreate", async (interaction) => {
|
|||
break;
|
||||
case "deactivate": // Deactivate an account
|
||||
// Check that account_number is owned by the user, if it is, delete the row
|
||||
accountNumber = interaction.options.getInteger("account_number");
|
||||
accountNumber = interaction.options.getString("account_number");
|
||||
db.get("SELECT * FROM accounts WHERE discord_id = ? AND id = ?", interaction.user.id, accountNumber, (err, row) => {
|
||||
if (err) {
|
||||
console.error(err);
|
||||
|
|
Loading…
Reference in a new issue