### 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.
36 lines
629 B
TypeScript
36 lines
629 B
TypeScript
import type { CollectionConfig } from 'payload'
|
|
|
|
import { usersSlug } from '../../shared.js'
|
|
|
|
export const Users: CollectionConfig = {
|
|
slug: usersSlug,
|
|
auth: true,
|
|
admin: {
|
|
useAsTitle: 'email',
|
|
group: 'Administrative',
|
|
},
|
|
access: {
|
|
read: () => true,
|
|
},
|
|
fields: [
|
|
// Email added by default
|
|
// Add more fields as needed
|
|
{
|
|
type: 'select',
|
|
name: 'roles',
|
|
hasMany: true,
|
|
options: [
|
|
{
|
|
label: 'Admin',
|
|
value: 'admin',
|
|
},
|
|
{
|
|
label: 'User',
|
|
value: 'user',
|
|
},
|
|
],
|
|
saveToJWT: true,
|
|
},
|
|
],
|
|
}
|