Add Open Collective information. (#1097)

Closes https://github.com/the-draupnir-project/planning/issues/131.
This commit is contained in:
Gnuxie
2026-04-17 17:41:55 +01:00
committed by GitHub
parent 93adaf9e6d
commit be4fc0871b
2 changed files with 16 additions and 7 deletions
+6
View File
@@ -33,6 +33,12 @@ Draupnir is supported by [NLnet](https://nlnet.nl/project/Draupnir/) through the
NGI Zero Core programme. The goals of this work are described
[here](https://marewolf.me/posts/draupnir/24-nlnet-goals.html).
Draupnir also accepts community support through
[Open Collective](https://opencollective.com/draupnir), hosted by
[Open Source Collective](https://opencollective.com/opensource). Contributions
help sustain development, maintenance, and contributor expenses with public
budget transparency.
## Quick start
See
+10 -7
View File
@@ -1,4 +1,4 @@
// Copyright 2022 - 2025 Gnuxie <Gnuxie@protonmail.com>
// Copyright 2022 - 2026 Gnuxie <Gnuxie@protonmail.com>
// Copyright 2019 - 2022 The Matrix.org Foundation C.I.C.
//
// SPDX-License-Identifier: AFL-3.0 AND Apache-2.0
@@ -223,12 +223,6 @@ export function renderStatusInfo(info: StatusInfo): DocumentNode {
};
return (
<root>
<b>Protected Rooms: </b>
{info.numberOfProtectedRooms}
<br />
<b>Protected Users: </b>
{info.numberOfUniqueMembers}
<br />
{renderPolicyLists("Subscribed policy rooms", info.subscribedLists)}
{renderPolicyLists(
"Subscribed and protected policy rooms",
@@ -247,6 +241,15 @@ export function renderStatusInfo(info: StatusInfo): DocumentNode {
<b>Documentation: </b>{" "}
<a href={info.documentationURL}>{info.documentationURL}</a>
<br />
<h4>Support Draupnir</h4>
<p>
This deployment protects {info.numberOfUniqueMembers} unique users
across {info.numberOfProtectedRooms} rooms.
</p>
<p>
If your community relies on Draupnir, consider supporting it on{" "}
<a href="https://opencollective.com/draupnir">Open Collective</a>
</p>
</root>
);
}