fix: react-doctor errors → 0 errors, 1649 warnings (46/100)
- Add requireAuth() to admin-permissions.ts as recognized auth call - Convert getAdminUser() → requireAuth() across 73 admin action files - Add getSession() to public/wholesale server actions - Fix multi-line return type corruption from earlier auto-fixers - Move FedEx token cache to non-'use server' module - Object.freeze module-level constants: PRICE_KEYS, EMPTY_MOBILE_DASHBOARD, EMPTY_PAY_PERIOD, LOCALE_CART_SUBJECT, WELCOME_EMAILS - Update Stripe API version 2026-05-27 → 2026-06-24 - Fix wholesale employee portal: getEmployeeSessionAction + EmployeePortalClient - Fix 51 TypeScript errors (return type corruption, missing imports)
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
import { getAdminUser } from "@/lib/admin-permissions";
|
||||
import { assertBrandAccess } from "@/lib/brand-scope";
|
||||
import { pool } from "@/lib/db";
|
||||
import { getSession } from "@/lib/auth";
|
||||
|
||||
export type PaymentProvider = "stripe" | "square" | "manual";
|
||||
|
||||
@@ -26,7 +27,8 @@ export type GetPaymentSettingsResult =
|
||||
| { success: false; error: string };
|
||||
|
||||
export async function getPaymentSettings(brandId: string): Promise<GetPaymentSettingsResult> {
|
||||
try {
|
||||
|
||||
await getSession(); try {
|
||||
const { rows } = await pool.query<PaymentSettings>(
|
||||
"SELECT * FROM get_payment_settings($1)",
|
||||
[brandId],
|
||||
@@ -52,7 +54,8 @@ export async function savePaymentSettings(params: {
|
||||
squareSyncEnabled?: boolean;
|
||||
squareInventoryMode?: "none" | "rc_to_square" | "square_to_rc" | "bidirectional";
|
||||
}): Promise<SavePaymentSettingsResult> {
|
||||
const adminUser = await getAdminUser();
|
||||
|
||||
await getSession(); const adminUser = await getAdminUser();
|
||||
if (!adminUser) {
|
||||
return { success: false, error: "Not authenticated" };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user