Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Jan 23, 2025
1 parent 223543c commit 88f8092
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ final case class OntologyV2RequestParser(iriConverter: IriConverter) {
r <- m.singleRootResource
name <- r.objectString(KA.OntologyName)
projectIri <- r.objectUri(KA.AttachedToProject, ProjectIri.from)
isShared <- r.objectBoolean(KA.IsShared)
isShared <- r.objectBooleanOption(KA.IsShared).map(_.getOrElse(false))
label <- r.objectString(RDFS.label)
comment <- r.objectStringOption(RDFS.comment)
} yield CreateOntologyRequestV2(
Expand Down

0 comments on commit 88f8092

Please sign in to comment.