Persona Data Seed Module¶
Persona seeder for modules. Persona module disables the IdentityDataSeedContributor that installs with the Volo.Abp.Identity package. This package automatically seeds the pre defined personas.
Persona module automatically seeds the following users:
Persona Name | User Name | Password |
---|---|---|
Platform Admin | platon | 1qaz2WSX90-= |
It Admin | adrian | Admin1234+ |
Model Admin | madisson | Model1234+ |
Data Provider | priscilla | Provider1234+ |
Data User | dustin | Data1234+ |
User | polly | User1234+ |
Installation¶
If you want to install persona;
-
Add the GridLab.Abp.Persona NuGet package to your project:
Install-Package GridLab.Abp.Persona
-
Add the
AbpPersonaModule
to the dependency list of your module:[DependsOn( //...other dependencies typeof(AbpPersonaModule) // <-- Add module dependency like that )] public class YourModule : AbpModule { }