Task Attachments #104

Merged
konrad merged 63 commits from feature/attachments into master 2019-10-16 20:52:31 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 021b8cd52b - Show all commits

View File

@ -56,6 +56,7 @@ func (f *File) LoadFileByID() (err error) {
return
}
// LoadFileMetaByID loads everything about a file without loading the actual file
func (f *File) LoadFileMetaByID() (err error) {
_, err = x.Where("id = ?", f.ID).Get(f)
return