forked from midou/invidious
User: Remove broken Google login (various comments)
This commit is contained in:
parent
69f23d95b8
commit
b06c87ff8d
@ -255,8 +255,7 @@ https_only: false
|
|||||||
#registration_enabled: true
|
#registration_enabled: true
|
||||||
|
|
||||||
##
|
##
|
||||||
## Allow/Forbid users to log-in. This setting affects the ability
|
## Allow/Forbid users to log-in.
|
||||||
## to connect with BOTH Google and Invidious (local) accounts.
|
|
||||||
##
|
##
|
||||||
## Accepted values: true, false
|
## Accepted values: true, false
|
||||||
## Default: true
|
## Default: true
|
||||||
|
@ -178,10 +178,6 @@ module Invidious::Routes::API::V1::Authenticated
|
|||||||
Invidious::Database::Users.subscribe_channel(user, ucid)
|
Invidious::Database::Users.subscribe_channel(user, ucid)
|
||||||
end
|
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
|
env.response.status_code = 204
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -320,10 +320,6 @@ module Invidious::Routes::Playlists
|
|||||||
end
|
end
|
||||||
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
|
email = user.email
|
||||||
|
|
||||||
case action
|
case action
|
||||||
|
@ -16,12 +16,11 @@
|
|||||||
<li>a list of channel UCIDs the user is subscribed to</li>
|
<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 user ID (for persistent storage of subscriptions and preferences)</li>
|
||||||
<li>a json object containing user 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 randomly generated token for providing an RSS feed of a user's subscriptions</li>
|
||||||
<li>a list of video IDs identifying watched videos</li>
|
<li>a list of video IDs identifying watched videos</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Users can clear their watch history using the <a href="/clear_watch_history">clear watch history</a> page.</p>
|
<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>
|
<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>
|
<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>
|
||||||
|
Loading…
Reference in New Issue
Block a user