Skip to content

Commit

Permalink
add pairing code to tokens page after authorize (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
luislng committed Nov 22, 2018
1 parent 59bde2c commit 331b81f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BTCPayServer/Controllers/StoresController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,8 @@ public async Task<IActionResult> Pair(string pairingCode, string selectedStore)
StatusMessage = "Server initiated pairing code: " + pairingCode;
return RedirectToAction(nameof(ListTokens), new
{
storeId = store.Id
storeId = store.Id,
pairingCode = pairingCode
});
}
else
Expand Down

0 comments on commit 331b81f

Please sign in to comment.