File size: 260 Bytes
fb4d8fe
 
 
 
 
 
1
2
3
4
5
6
7
import type { PairingChannel } from "./pairing-store.js";
import { getPairingAdapter } from "../channels/plugins/pairing.js";

export function resolvePairingIdLabel(channel: PairingChannel): string {
  return getPairingAdapter(channel)?.idLabel ?? "userId";
}