test githook

This commit is contained in:
array-in-a-matrix 2024-07-11 19:43:25 -04:00
parent ba856038e2
commit 656e91339a

View file

@ -9,5 +9,7 @@ type File* = ref object of Model
tags*: string #? This is a temporary hack should be `seq[string]` or `JsonNode` instead
# creates a new file object and sets default values, recommended by the norm documentation
func newFile*(user: User = newUser(), path: string = "", name: string = "", tags: string = ""): File =
func newFile*(user: User = newUser(), path: string = "", name: string = "",
tags: string = ""): File =
File(owner: user, path: path, name: name, tags: tags)