48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
////////////////////////////////// example
|
|
//////////////////////////////////
|
|
// module.exports = [
|
|
// {
|
|
// first_name: '',
|
|
// last_name: '',
|
|
// username: '',
|
|
// password: ''
|
|
// },
|
|
// {
|
|
// first_name: '',
|
|
// last_name: '',
|
|
// username: '',
|
|
// password: ''
|
|
// }
|
|
// ]
|
|
////////////////////////////////////
|
|
//////////////////////////////////// example
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////
|
|
// *remove data from this file after first run* //
|
|
//////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////
|
|
|
|
|
|
module.exports = [
|
|
{
|
|
first_name: 'negareh',
|
|
last_name: 'support',
|
|
password: 'barg@1234@A!@#$',
|
|
scope: ['admin'],
|
|
permissions: ['super-admin','development'],
|
|
username: 'negareh_support'
|
|
},
|
|
{
|
|
first_name: 'barg',
|
|
last_name: 'admin',
|
|
password: 'barg123456',
|
|
scope: ['admin'],
|
|
permissions: ['super-admin'],
|
|
username: 'barg_admin'
|
|
}
|
|
]
|