🚧 (wip) try to add callback uri option

This commit is contained in:
Rafi Arrafif
2025-09-03 15:34:11 +07:00
parent bf35af294e
commit 86f8c2a96d
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import { googleCallbackService } from "../services/http/googleCallback.service";
import { getUserHeaderInformation } from "../../../helpers/http/userHeader/getUserHeaderInformation";
export const googleCallbackController = async (
ctx: Context & { query: { code: string; state: string } }
ctx: Context & { query: { code: string; state: string; callbackURI: string } }
) => {
try {
const userHeaderInfo = getUserHeaderInformation(ctx);