diff options
author | Grant Shangreaux <shoshin@cicadas.surf> | 2023-02-22 21:02:48 -0600 |
---|---|---|
committer | Grant Shangreaux <shoshin@cicadas.surf> | 2023-02-22 21:02:48 -0600 |
commit | c6bfcaa305259a07a046b8bfa380419180f6be45 (patch) | |
tree | 2b52d4dce82f83a224103a3a25a3a093e18191f5 /model.lisp | |
parent | df29da3e0e51f407f65680e4b3fdd380d301f33a (diff) |
Add: WIP track info editing
Diffstat (limited to 'model.lisp')
-rw-r--r-- | model.lisp | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -178,3 +178,10 @@ (defun update-playlist-title (playlist title) (with-transaction () (setf (playlist-title playlist) title))) + +(defun update-track-info (track new-artist new-album new-title) + (with-transaction () + (with-slots (artist album title) track + (setf artist new-artist + album new-album + title new-title)))) |