docs: update device linking URLs to use dashboard endpoint
This commit is contained in:
parent
f9ef7e0298
commit
5cd59f1333
2 changed files with 3 additions and 3 deletions
|
|
@ -338,7 +338,7 @@ export async function updateScore(req, res) {
|
|||
<div>
|
||||
<h4 className="text-white font-semibold mb-1">Player Links Account</h4>
|
||||
<p className="text-gray-400 text-sm">
|
||||
Player visits <code className="bg-blue-950/50 px-1 rounded">aethex.dev/link</code>, enters code,
|
||||
Player visits <code className="bg-blue-950/50 px-1 rounded">aethex.dev/dashboard?tab=link-device</code>, enters code,
|
||||
RecRoom receives webhook with Passport ID
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -232,7 +232,7 @@ public class VRChatLeaderboard : UdonSharpBehaviour
|
|||
</li>
|
||||
<li className="flex gap-3">
|
||||
<span className="text-purple-400 font-bold">3.</span>
|
||||
<span>Player visits <code className="bg-purple-950/50 px-2 py-1 rounded">aethex.dev/link</code> and enters code</span>
|
||||
<span>Player visits <code className="bg-purple-950/50 px-2 py-1 rounded">aethex.dev/dashboard?tab=link-device</code> and enters code</span>
|
||||
</li>
|
||||
<li className="flex gap-3">
|
||||
<span className="text-purple-400 font-bold">4.</span>
|
||||
|
|
@ -252,7 +252,7 @@ public void OnAuthButtonPressed()
|
|||
{
|
||||
// Display 6-digit code to player in-world
|
||||
authCodeText.text = $"Code: {response.code}";
|
||||
Debug.Log($"Player should visit: aethex.dev/link?code={response.code}");
|
||||
Debug.Log($"Player should visit: aethex.dev/dashboard?tab=link-device&code={response.code}");
|
||||
|
||||
// Poll for authentication completion
|
||||
StartCoroutine(PollAuthStatus(response.code));
|
||||
|
|
|
|||
Loading…
Reference in a new issue