mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
28 lines
797 B
JavaScript
Executable File
28 lines
797 B
JavaScript
Executable File
import { Icons } from "components/Icons"
|
|
|
|
export default {
|
|
id: "privacy",
|
|
icon: "MdOutlinePrivacyTip",
|
|
label: "Privacy",
|
|
group: "basic",
|
|
settings: [
|
|
{
|
|
id: "request-data",
|
|
group: "privacy.general",
|
|
icon: "IoMdDownload",
|
|
title: "Request all my data",
|
|
description: "Start the process of requesting all your data storaged from our services.",
|
|
component: "Button",
|
|
props: {
|
|
type: "primary",
|
|
children: "Request"
|
|
},
|
|
storaged: false,
|
|
},
|
|
],
|
|
footer: () => {
|
|
return <div className="reminder">
|
|
<Icons.Info /> Take a look to our <a href="/privacy" target="_blank">privacy policy</a>.
|
|
</div>
|
|
}
|
|
} |