[view] feature: adding a new 'verified' filter for the packages table

This commit is contained in:
Vinicius Moreira
2023-11-30 17:17:32 -03:00
parent 4c91973028
commit a4c24c8aa6
32 changed files with 254 additions and 38 deletions

View File

@@ -132,6 +132,9 @@ class DebianPackage(SoftwarePackage):
def supports_ignored_updates(self) -> bool:
return True
def is_trustable(self) -> bool:
return True
def __eq__(self, other):
if isinstance(other, DebianPackage):
return self.name == other.name