- Introduced layout components for multiple admin dashboard sections including events, audit logs, bank accounts, blog articles, bookings, chat oversight, cities, contact messages, dashboard, discount codes, event categories, guest lists, identity verifications, manage events, manual notifications, notification rules, payments, provinces, push deliveries, reviews, settlements, sms messages, support tickets, user reports, and users. - Updated metadata for the auth layout to include the admin page title. - Modified branch protection documentation to clarify deployment notifications.
12 lines
423 B
TypeScript
12 lines
423 B
TypeScript
/**
|
|
* Query-key factory for shared cache keys still used by the admin app
|
|
* (auth me-cache, public categories, discovery cities for profile).
|
|
*/
|
|
export const consumerKeys = {
|
|
all: ['consumer'] as const,
|
|
|
|
me: () => [...consumerKeys.all, 'me'] as const,
|
|
discoveryCities: () => [...consumerKeys.all, 'discovery', 'cities'] as const,
|
|
publicCategories: () => [...consumerKeys.all, 'categories', 'public'] as const,
|
|
}
|