admin_token_table: implement is_tombstone()

This commit is contained in:
Alex Auvolat 2025-03-12 09:29:54 +01:00
parent eb40475f1e
commit 325f79012c

View file

@ -139,6 +139,9 @@ impl Entry<EmptyKey, String> for AdminApiToken {
fn sort_key(&self) -> &String {
&self.prefix
}
fn is_tombstone(&self) -> bool {
self.is_deleted()
}
}
pub struct AdminApiTokenTable;