mirror of
https://github.com/xtr-dev/payload-feature-flags.git
synced 2025-12-10 02:43:25 +00:00
Replace redundant components with updated feature flag hooks and views. Add comprehensive documentation and ESLint config for improved development workflow.
This commit is contained in:
@@ -1,4 +1,21 @@
|
||||
export const devUser = {
|
||||
email: 'dev@payloadcms.com',
|
||||
password: 'test',
|
||||
name: 'Development Admin',
|
||||
role: 'admin' as const,
|
||||
}
|
||||
|
||||
export const testUsers = [
|
||||
{
|
||||
email: 'editor@payloadcms.com',
|
||||
password: 'test123',
|
||||
name: 'Content Editor',
|
||||
role: 'editor' as const,
|
||||
},
|
||||
{
|
||||
email: 'user@payloadcms.com',
|
||||
password: 'test123',
|
||||
name: 'Regular User',
|
||||
role: 'user' as const,
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user