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 Email
</th> </th>
<th> <th>
Verified Enabled
</th> </th>
<th> <th>
Created At Created At
@ -96,7 +96,7 @@
<tr> <tr>
<td>{{ alias.id }}</td> <td>{{ alias.id }}</td>
<td><a href="?email={{ alias.email }}">{{ alias.email }}</a></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> <td>{{ alias.created_at }}</td>
</tr> </tr>
{% endfor %} {% endfor %}