···26262727func ServeCatalog() http.Handler {
2828 return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
2929- releases := []model.Release{}
2929+ releases := []*model.Release{}
3030 authorised := admin.GetSession(r) != nil
3131 for _, release := range global.Releases {
3232 if !release.IsReleased() && !authorised {
public/img/default-avatar.png
This is a binary file and will not be displayed.
+1-1
schema.sql
···22-- Artists (should be applicable to all art)
33--
44CREATE TABLE public.artist (
55- id character varying(64) DEFAULT gen_random_uuid(),
55+ id character varying(64),
66 name text NOT NULL,
77 website text,
88 avatar text