mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 00:45:44 +01:00
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
|
|
// @flow
|
||
|
|
|
||
|
|
export const isDisplayNameValid = (displayName: string) => {
|
||
|
|
if (displayName) {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
return false;
|
||
|
|
};
|
||
|
|
export const isPasswordValid = (password: string) => {
|
||
|
|
return password.length > 6 && password.length < 32;
|
||
|
|
};
|