Portal local development: - Add BASE_PATH detection to all portal files (login, portal.js, menu-builder, station-assignment) - Allows portal to work at /biz.payfrit.com/ path locally Menu Builder fixes: - Fix duplicate template options in getForBuilder.cfm query - Filter template children by business ID with DISTINCT New APIs: - api/portal/myBusinesses.cfm - List businesses for logged-in user - api/stations/list.cfm - List KDS stations - api/menu/updateStations.cfm - Update item station assignments - api/setup/reimportBigDeans.cfm - Full Big Dean's menu import script Admin utilities: - Various debug and migration scripts for menu/template management - Beacon switching, category cleanup, modifier template setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
946 B
Text
35 lines
946 B
Text
<cfsetting showdebugoutput="false">
|
|
<cfsetting enablecfoutputonly="true">
|
|
<cfcontent type="application/json; charset=utf-8" reset="true">
|
|
|
|
<cfscript>
|
|
phone = structKeyExists(url, "phone") ? url.phone : "";
|
|
phone = reReplace(phone, "[^0-9]", "", "all");
|
|
|
|
if (!len(phone)) {
|
|
writeOutput(serializeJSON({ "OK": false, "ERROR": "missing phone" }));
|
|
abort;
|
|
}
|
|
|
|
q = queryExecute("
|
|
SELECT UserID, UserFirstName, UserLastName, UserEmail, UserPhone, UserIsContactVerified
|
|
FROM Users
|
|
WHERE UserPhone = :phone OR UserEmail = :phone
|
|
LIMIT 1
|
|
", { phone: phone }, { datasource: "payfrit" });
|
|
|
|
if (q.recordCount EQ 0) {
|
|
writeOutput(serializeJSON({ "OK": false, "ERROR": "user_not_found", "phone": phone }));
|
|
abort;
|
|
}
|
|
|
|
writeOutput(serializeJSON({
|
|
"OK": true,
|
|
"UserID": q.UserID,
|
|
"FirstName": q.UserFirstName,
|
|
"LastName": q.UserLastName,
|
|
"Email": q.UserEmail,
|
|
"Phone": q.UserPhone,
|
|
"Verified": q.UserIsContactVerified
|
|
}));
|
|
</cfscript>
|