diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2023-06-10 17:59:50 +0200 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2023-06-11 16:34:59 +0200 |
| commit | b06c87ff8d1b799de8926d8b965cc1223b52a3de (patch) | |
| tree | 79ef5cc0da50f8c022267e26fcabd53e01314deb /src | |
| parent | 69f23d95b8ab719ca4f19649ce105fa29786913c (diff) | |
| download | invidious-b06c87ff8d1b799de8926d8b965cc1223b52a3de.tar.gz invidious-b06c87ff8d1b799de8926d8b965cc1223b52a3de.tar.bz2 invidious-b06c87ff8d1b799de8926d8b965cc1223b52a3de.zip | |
User: Remove broken Google login (various comments)
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious/routes/api/v1/authenticated.cr | 4 | ||||
| -rw-r--r-- | src/invidious/routes/playlists.cr | 4 | ||||
| -rw-r--r-- | src/invidious/views/privacy.ecr | 3 |
3 files changed, 1 insertions, 10 deletions
diff --git a/src/invidious/routes/api/v1/authenticated.cr b/src/invidious/routes/api/v1/authenticated.cr index ce2ee812..a35d2f2b 100644 --- a/src/invidious/routes/api/v1/authenticated.cr +++ b/src/invidious/routes/api/v1/authenticated.cr @@ -178,10 +178,6 @@ module Invidious::Routes::API::V1::Authenticated Invidious::Database::Users.subscribe_channel(user, ucid) end - # For Google accounts, access tokens don't have enough information to - # make a request on the user's behalf, which is why we don't sync with - # YouTube. - env.response.status_code = 204 end diff --git a/src/invidious/routes/playlists.cr b/src/invidious/routes/playlists.cr index 8675fa45..1dd3f32e 100644 --- a/src/invidious/routes/playlists.cr +++ b/src/invidious/routes/playlists.cr @@ -320,10 +320,6 @@ module Invidious::Routes::Playlists end end - if !user.password - # TODO: Playlist stub, sync with YouTube for Google accounts - # playlist_ajax(playlist_id, action, env.request.headers) - end email = user.email case action diff --git a/src/invidious/views/privacy.ecr b/src/invidious/views/privacy.ecr index 643f880b..bc5ff40b 100644 --- a/src/invidious/views/privacy.ecr +++ b/src/invidious/views/privacy.ecr @@ -16,12 +16,11 @@ <li>a list of channel UCIDs the user is subscribed to</li> <li>a user ID (for persistent storage of subscriptions and preferences)</li> <li>a json object containing user preferences</li> - <li>a hashed password if applicable (not present on google accounts)</li> + <li>a hashed password</li> <li>a randomly generated token for providing an RSS feed of a user's subscriptions</li> <li>a list of video IDs identifying watched videos</li> </ul> <p>Users can clear their watch history using the <a href="/clear_watch_history">clear watch history</a> page.</p> - <p>If a user is logged in with a Google account, no password will ever be stored. This website uses the session token provided by Google to identify a user, but does not store the information required to make requests on a user's behalf without their knowledge or consent.</p> <h3>Data you passively provide</h3> <p>When you request any resource from this website (for example: a page, a font, an image, or an API endpoint) information about the request may be logged.</p> |
