Improve syncer.initAdapter().

This commit is contained in:
Yang Luo
2021-12-23 21:28:40 +08:00
parent fa45d3083a
commit f4890a6a22
4 changed files with 31 additions and 22 deletions

View File

@ -558,3 +558,7 @@ export function getApplicationOrgName(application) {
export function getRandomName() {
return Math.random().toString(36).slice(-6);
}
export function getRandomNumber() {
return Math.random().toString(10).slice(-11);
}

View File

@ -70,8 +70,8 @@ class UserListPage extends React.Component {
passwordSalt: "",
displayName: `New User - ${randomName}`,
avatar: "https://casbin.org/img/casbin.svg",
email: "user@example.com",
phone: "12345678",
email: `${randomName}@example.com`,
phone: Setting.getRandomNumber(),
address: [],
affiliation: "Example Inc.",
tag: "staff",