WIP: Add SVG Templating #10

Draft
tueem wants to merge 14 commits from feat/template into dev
Showing only changes of commit de3ba44093 - Show all commits

View File

@@ -60,7 +60,7 @@ func (f FileSvgStorage) Get(id string) (io.ReadCloser, error) {
func (f FileSvgStorage) CreatePublic(data io.Reader, filetype string) (string, error) {
path := filepath.Join(f.basepath, f.publicSubPath)
if err := os.Mkdir(path, 0755); err != nil {
if err := os.MkdirAll(path, 0755); err != nil {
return "", err
}