Skip to content

Commit

Permalink
SHC Validation + filetype detection (#143)
Browse files Browse the repository at this point in the history
* Allow fileType to be null and derived from content in ValidationService

* Adjust ace file type

* Bump core to release version
  • Loading branch information
dotasek committed Oct 5, 2023
1 parent ef738e4 commit 40ccdc1
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 20 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ kotlin.code.style=official
kotlin.js.generate.executable.default=false

# versions
fhirCoreVersion=6.1.2
fhirCoreVersion=6.1.12

junitVersion=5.7.1
mockk_version=1.10.2
Expand Down
4 changes: 2 additions & 2 deletions src/commonMain/kotlin/model/FileInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ expect class FileInfo() {
fun getFileName(): String
fun setFileContent(fileContent: String): FileInfo
fun getFileContent(): String
fun setFileType(fileType: String): FileInfo
fun getFileType(): String
fun setFileType(fileType: String?): FileInfo
fun getFileType(): String?
}
14 changes: 7 additions & 7 deletions src/commonMain/resources/static-content/mode-json.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 40ccdc1

Please sign in to comment.