fix(admin): change alias.verified to alias.enabled (#2260)

This commit is contained in:
Carlos Quintana 2024-10-11 09:41:58 +02:00 committed by GitHub
parent 076d5108d8
commit 7c0db6067b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -84,7 +84,7 @@
Email
</th>
<th>
Verified
Enabled
</th>
<th>
Created At
@ -96,7 +96,7 @@
<tr>
<td>{{ alias.id }}</td>
<td><a href="?email={{ alias.email }}">{{ alias.email }}</a></td>
<td>{{ "Yes" if alias.verified else "No" }}</td>
<td>{{ "Yes" if alias.enabled else "No" }}</td>
<td>{{ alias.created_at }}</td>
</tr>
{% endfor %}