This commit is contained in:
Kara Engelhardt
2026-07-21 13:58:05 +02:00
parent 3cf275d08a
commit 54035898ff
4 changed files with 22 additions and 61 deletions
+1 -4
View File
@@ -10,15 +10,12 @@ class WalletPlatform:
identifier: str
name: str
def get_layout_qs(self):
return WalletLayout.objects.filter(platform=self.identifier)
class ApplePlatform(WalletPlatform):
identifier = "apple"
name = _("Apple")
class GooglePlatform(WalletPlatform):
identifier = "apple"
identifier = "google"
name = _("Google")
class PlaceholderFieldType(enum.Enum):