Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/desecapi/serializers/records.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def to_internal_value(self, data):
raise serializers.ValidationError(
{
api_settings.NON_FIELD_ERRORS_KEY: [
f"RRset with conflicting type present: {types_by_position}."
f"RRset with conflicting type present at same subname: {types_by_position}."
" (No other RRsets are allowed alongside CNAME.)"
]
}
Expand Down Expand Up @@ -412,7 +412,7 @@ def get_validators(self):
"type",
"CNAME",
),
message="RRset with conflicting type present: database ({types})."
message="RRset with conflicting type present at same subname: database ({types})."
" (No other RRsets are allowed alongside CNAME.)",
),
]
Expand Down
8 changes: 4 additions & 4 deletions api/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
captcha~=0.7.1
celery~=5.6.2
coverage~=7.13.4
coverage~=7.14.0
cryptography~=46.0.5
Django~=5.2.7
django-cors-headers~=4.9.0
djangorestframework~=3.16.1
django-celery-email~=3.0.0
django-netfields~=1.3.2
django-netfields~=1.4.1
django-pgtrigger~=4.17.0
django-prometheus~=2.4.1
dnspython~=2.8.0
pyotp~=2.9.0
psycopg[binary]~=3.3.2
psycopg[binary]~=3.3.4
psl-dns~=1.1.1
pylibmc~=1.6.3
pyyaml~=6.0.3
requests~=2.32.5
responses~=0.25.8
responses~=0.26.0
uwsgi~=2.0.31
2 changes: 1 addition & 1 deletion www/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<h1>Modern DNS Hosting for Everyone</h1>
<p>
deSEC is a <strong>free DNS hosting</strong> service, <strong>designed with security in mind</strong>.<br>
Running on <strong>open-source software</strong> and <strong>supported by <a href="https://securesystems.de/">SSE</a></strong>,
Running on <strong>open-source software</strong> and <strong>supported by <a href="https://systemsecurity.com/">SSE</a></strong>,
deSEC is free for everyone to use.
</p>
<h2>🛑 Warning</h2>
Expand Down
4 changes: 4 additions & 0 deletions www/webapp/src/views/DonatePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@
<th>Litecoin (LTC)</th>
<td><strong>(No MWEB!)</strong> <span class="fixed-width">LeFYoRRcrMPiruRGQQknQBdjGdmsEpHzno</span></td>
</tr>
<tr>
<th>USDT (TRON/TRC20)</th>
<td><span class="fixed-width">TNX3XpTx5WwzHrnDx6VB3YtWz4ME3UTu5x</span></td>
</tr>
</table>
<p class="mt-4">Note that we cannot provide you a donation receipt for crypto donations.</p>
</v-expansion-panel-content>
Expand Down
2 changes: 1 addition & 1 deletion www/webapp/src/views/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
deSEC is a <strong>free DNS hosting</strong> service, <strong>designed with security in mind</strong>.
</p>
<p>
Running on <strong>open-source software</strong> and <strong>supported by <a href="https://securesystems.de/">SSE</a></strong>,
Running on <strong>open-source software</strong> and <strong>supported by <a href="https://systemsecurity.com/">SSE</a></strong>,
deSEC is free for everyone to use.
</p>
</div>
Expand Down
Loading