mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-09-16 23:49:52 +00:00
10 lines
305 B
PHP
10 lines
305 B
PHP
<?php
|
|
$status_token = $_POST['status_token'];
|
|
$channel_name = $_POST['new_preferred_channel'];
|
|
$email = $_POST['new_email'];
|
|
$sync_consent = isset($_POST['sync_consent']);
|
|
|
|
LBRY::editYouTube($status_token, $channel_name, $email, $sync_consent);
|
|
|
|
|
|
Controller::redirect("/youtube/status/" . $status_token);
|