-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #1859 ## Test Plan > How do we know the code works? Works as intended and follows outline as set out in #1859 ## Checklist - [ ] Unit tested
- v23.10.1
- v23.10.0
- v23.07.0
- v23.06.2
- v23.06.1
- v23.06.0
- v23.04.0
- v23.03.2
- v23.03.1
- v23.03.0
- v23.01.0
- v22.10.0
- v22.05.0
- v22.04.0
- v22.03.0
- v21.11.0
- v21.09.0
- v21.08.1
- v21.08.0
- v21.07.2
- v21.07.1
- v21.07.0
- v21.06.1
- v21.06.0
- flank-wrapper-1.2.5
- flank-wrapper-1.2.4
- flank-wrapper-1.2.3
- flank-wrapper-1.2.2
- flank-wrapper-1.2.1
- flank-wrapper-1.2.0
- flank-wrapper-1.1.0
- flank-scripts-1.9.28
- flank-scripts-1.9.27
- flank-scripts-1.9.26
- flank-scripts-1.9.25
- flank-scripts-1.9.24
- flank-scripts-1.9.23
- flank-scripts-1.9.22
- flank-scripts-1.9.21
- flank-scripts-1.9.20
- flank-scripts-1.9.19
- flank-scripts-1.9.18
- flank-scripts-1.9.17
- flank-scripts-1.9.16
- flank-scripts-1.9.15
- flank-scripts-1.9.14
- flank-scripts-1.9.13
Showing
3 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
package ftl.domain | ||
|
||
import flank.common.logLn | ||
import ftl.api.Locale.Identity | ||
import ftl.api.Platform | ||
import ftl.api.fetchLocales | ||
import ftl.args.IosArgs | ||
import ftl.presentation.cli.firebase.test.locale.toCliTable | ||
import ftl.presentation.Output | ||
import java.nio.file.Paths | ||
|
||
interface ListIosLocales { | ||
interface ListIosLocales : Output { | ||
val configPath: String | ||
} | ||
|
||
operator fun ListIosLocales.invoke() { | ||
logLn(fetchLocales(Identity(IosArgs.loadOrDefault(Paths.get(configPath)).project, Platform.IOS)).toCliTable()) | ||
fetchLocales(Identity(IosArgs.loadOrDefault(Paths.get(configPath)).project, Platform.IOS)).out() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters