chamesu
Version:
This package contains all packages of the chat application.
39 lines (32 loc) • 903 B
text/typescript
/*
* Copyright (c) 2022.
* Author Peter Placzek (tada5hi)
* For the full copyright and license information,
* view the LICENSE file that was distributed with this source code.
*/
const AuthConfig: Record<string, any> = {
/**
* Users created on 'npm run run-seed'.
*/
users: [
{name: 'admin', password: 'start123', email: 'peter.placzek1996@gmail.com'},
],
/**
* Permissions created on 'npm run run-seed'.
*/
permissions: [
{name: 'admin_ui_use'},
{name: 'permission_add'},
{name: 'permission_drop'},
{name: 'permission_edit'},
{name: 'user_add'},
{name: 'user_drop'},
{name: 'user_edit'},
{name: 'role_add'},
{name: 'role_drop'},
{name: 'role_edit'},
{name: 'role_permission_add'},
{name: 'role_permission_drop'}
]
}
export default AuthConfig;