Files
payload/test/plugin-multi-tenant/collections/Tenants.ts
Jarrod Flesch 22633a6de6 fix(plugin-multi-tenant): remove tenant cookie on logout (#10761)
### What?
- Removes the tenant cookie when the user logs out
- Prevents double redirect to globals when no tenant is selected

### Why?
There were a couple scenarios where the cookie and the tenant did not
match, ie if you logged into 1 tenant, and then out and then into
another tenant.
2025-01-24 10:10:49 -05:00

35 lines
591 B
TypeScript

import type { CollectionConfig } from 'payload'
import { tenantsSlug } from '../shared.js'
export const Tenants: CollectionConfig = {
slug: tenantsSlug,
labels: {
singular: 'Tenant',
plural: 'Tenants',
},
admin: {
useAsTitle: 'name',
group: 'Administrative',
},
fields: [
{
name: 'name',
label: 'Name',
type: 'text',
required: true,
},
{
name: 'domain',
type: 'text',
required: true,
},
{
type: 'join',
name: 'users',
collection: 'users',
on: 'tenants.tenant',
},
],
}