Page 1 of 1

Playlists-make all "Not visible to others"

PostPosted: Tue Jan 31, 2017 10:33 pm
by pat58
I have a large number of playlists (over 100) & would like to be able to make all of them not visible to other users. As it is, after installing subsonic & importing my playlists, I have to uncheck the "Visible to others" box for each one. So some sort of function that would allow me to make all my playlists not visible to other users in one fell swoop instead of having to uncheck each one.

Premium user

Re: Playlists-make all "Not visible to others"

PostPosted: Mon Feb 13, 2017 11:43 pm
by acroyear
Surprised no-one answered this. This is such a rare use case that I don't see the need for a full UI feature for it.

There is a way to write directly to the database. After logging in as an admin, change your url to "server:port/db.view".

In that window try the command -
Code: Select all
select * from playlist
- and hit ok. you should see your playlists.

this command -
Code: Select all
update playlist set is_public = false where username = '<username here>'
- should change them all.

Re: Playlists-make all "Not visible to others"

PostPosted: Mon Mar 19, 2018 3:23 am
by pat58
I am just seeing this (a year later!!) & just followed your directions & it worked! a million thanks for saving several hours of my time!