[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

@@ -288,3 +288,6 @@ class ArchPackage(SoftwarePackage):
@property
def orphan(self) -> bool:
return self.maintainer is None
def is_trustable(self) -> bool:
return self.repository and self.repository != "aur"