diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-07-06 12:45:37 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-07-06 12:45:37 +0200 |
| commit | 54f89bcd1a7fb0b92b65d8c0ea3847d635e11133 (patch) | |
| tree | da6c1e3f015c4b21a2e32854cadb09e71f9079e7 /Map/Business/CustomStage.swift | |
| parent | 3cd8f1f7200109d505b5e105d5ebe53f0c93d337 (diff) | |
Allow adding and removing templates
Diffstat (limited to 'Map/Business/CustomStage.swift')
| -rw-r--r-- | Map/Business/CustomStage.swift | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Map/Business/CustomStage.swift b/Map/Business/CustomStage.swift index 388531b..924e814 100644 --- a/Map/Business/CustomStage.swift +++ b/Map/Business/CustomStage.swift @@ -24,7 +24,7 @@ struct CustomStage: Identifiable, Codable { self.name = name self.stage = stage } - + static func cynefinDefault() -> CustomStage { return CustomStage( name: String(localized: "stage_type.cynefin"), @@ -36,7 +36,7 @@ struct CustomStage: Identifiable, Codable { ) ) } - + static func placeholderDefault() -> CustomStage { return CustomStage( name: String(localized: "stage_type.placeholder"), @@ -48,4 +48,4 @@ struct CustomStage: Identifiable, Codable { ) ) } -}
\ No newline at end of file +} |