changed the contact emails
This commit is contained in:
parent
f5b71524ef
commit
fb721fb67a
|
@ -12,6 +12,6 @@ First off, we really appreciate the time you spent!
|
||||||
|
|
||||||
If you found a vulnerability, these are the ways you can reach us:
|
If you found a vulnerability, these are the ways you can reach us:
|
||||||
|
|
||||||
Email: [hello@linkwarden.app](mailto:hello@daniel31x13.io)
|
Email: [security@linkwarden.app](mailto:security@linkwarden.app)
|
||||||
|
|
||||||
Or you can directly reach me via Twitter: [@daniel31x13](https://twitter.com/Daniel31X13).
|
Or you can directly DM me via Twitter: [@daniel31x13](https://twitter.com/Daniel31X13).
|
||||||
|
|
|
@ -33,8 +33,8 @@ export default function PaymentPortal() {
|
||||||
<p className="text-md text-gray-500">
|
<p className="text-md text-gray-500">
|
||||||
If you still need help or encountered any issues, feel free to reach
|
If you still need help or encountered any issues, feel free to reach
|
||||||
out to us at:{" "}
|
out to us at:{" "}
|
||||||
<a className="font-semibold" href="mailto:hello@linkwarden.app">
|
<a className="font-semibold" href="mailto:support@linkwarden.app">
|
||||||
hello@linkwarden.app
|
support@linkwarden.app
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -18,7 +18,7 @@ export default async function Index(req: NextApiRequest, res: NextApiResponse) {
|
||||||
else if (session?.user?.isSubscriber === false)
|
else if (session?.user?.isSubscriber === false)
|
||||||
res.status(401).json({
|
res.status(401).json({
|
||||||
response:
|
response:
|
||||||
"You are not a subscriber, feel free to reach out to us at hello@linkwarden.app in case of any issues.",
|
"You are not a subscriber, feel free to reach out to us at support@linkwarden.app in case of any issues.",
|
||||||
});
|
});
|
||||||
|
|
||||||
const collectionIsAccessible = await getPermission(
|
const collectionIsAccessible = await getPermission(
|
||||||
|
|
|
@ -19,7 +19,7 @@ export default async function Index(req: NextApiRequest, res: NextApiResponse) {
|
||||||
else if (session?.user?.isSubscriber === false)
|
else if (session?.user?.isSubscriber === false)
|
||||||
res.status(401).json({
|
res.status(401).json({
|
||||||
response:
|
response:
|
||||||
"You are not a subscriber, feel free to reach out to us at hello@linkwarden.app in case of any issues.",
|
"You are not a subscriber, feel free to reach out to us at support@linkwarden.app in case of any issues.",
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!queryId)
|
if (!queryId)
|
||||||
|
|
|
@ -17,7 +17,7 @@ export default async function collections(
|
||||||
} else if (session?.user?.isSubscriber === false)
|
} else if (session?.user?.isSubscriber === false)
|
||||||
res.status(401).json({
|
res.status(401).json({
|
||||||
response:
|
response:
|
||||||
"You are not a subscriber, feel free to reach out to us at hello@linkwarden.app in case of any issues.",
|
"You are not a subscriber, feel free to reach out to us at support@linkwarden.app in case of any issues.",
|
||||||
});
|
});
|
||||||
|
|
||||||
if (req.method === "GET") {
|
if (req.method === "GET") {
|
||||||
|
|
|
@ -14,7 +14,7 @@ export default async function links(req: NextApiRequest, res: NextApiResponse) {
|
||||||
} else if (session?.user?.isSubscriber === false)
|
} else if (session?.user?.isSubscriber === false)
|
||||||
res.status(401).json({
|
res.status(401).json({
|
||||||
response:
|
response:
|
||||||
"You are not a subscriber, feel free to reach out to us at hello@linkwarden.app in case of any issues.",
|
"You are not a subscriber, feel free to reach out to us at support@linkwarden.app in case of any issues.",
|
||||||
});
|
});
|
||||||
|
|
||||||
if (req.method === "GET") {
|
if (req.method === "GET") {
|
||||||
|
|
|
@ -11,7 +11,7 @@ export default async function tags(req: NextApiRequest, res: NextApiResponse) {
|
||||||
} else if (session?.user?.isSubscriber === false)
|
} else if (session?.user?.isSubscriber === false)
|
||||||
res.status(401).json({
|
res.status(401).json({
|
||||||
response:
|
response:
|
||||||
"You are not a subscriber, feel free to reach out to us at hello@linkwarden.app in case of any issues.",
|
"You are not a subscriber, feel free to reach out to us at support@linkwarden.app in case of any issues.",
|
||||||
});
|
});
|
||||||
|
|
||||||
if (req.method === "GET") {
|
if (req.method === "GET") {
|
||||||
|
|
|
@ -12,7 +12,7 @@ export default async function users(req: NextApiRequest, res: NextApiResponse) {
|
||||||
} else if (session?.user?.isSubscriber === false)
|
} else if (session?.user?.isSubscriber === false)
|
||||||
res.status(401).json({
|
res.status(401).json({
|
||||||
response:
|
response:
|
||||||
"You are not a subscriber, feel free to reach out to us at hello@linkwarden.app in case of any issues.",
|
"You are not a subscriber, feel free to reach out to us at support@linkwarden.app in case of any issues.",
|
||||||
});
|
});
|
||||||
|
|
||||||
const lookupUsername = (req.query.username as string) || undefined;
|
const lookupUsername = (req.query.username as string) || undefined;
|
||||||
|
|
|
@ -70,8 +70,8 @@ export default function Subscribe() {
|
||||||
<div>
|
<div>
|
||||||
<p className="text-md text-gray-500 mt-1">
|
<p className="text-md text-gray-500 mt-1">
|
||||||
Feel free to reach out to us at{" "}
|
Feel free to reach out to us at{" "}
|
||||||
<a className="font-semibold" href="mailto:hello@linkwarden.app">
|
<a className="font-semibold" href="mailto:support@linkwarden.app">
|
||||||
hello@linkwarden.app
|
support@linkwarden.app
|
||||||
</a>{" "}
|
</a>{" "}
|
||||||
in case of any issues.
|
in case of any issues.
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -44,8 +44,8 @@ export default function Subscribe() {
|
||||||
</p>
|
</p>
|
||||||
<p className="text-md text-gray-500 mt-1">
|
<p className="text-md text-gray-500 mt-1">
|
||||||
Feel free to reach out to us at{" "}
|
Feel free to reach out to us at{" "}
|
||||||
<a className="font-semibold" href="mailto:hello@linkwarden.app">
|
<a className="font-semibold" href="mailto:support@linkwarden.app">
|
||||||
hello@linkwarden.app
|
support@linkwarden.app
|
||||||
</a>{" "}
|
</a>{" "}
|
||||||
in case of any issues.
|
in case of any issues.
|
||||||
</p>
|
</p>
|
||||||
|
|
Ŝarĝante…
Reference in New Issue