release v2.0.0 #4

Merged
crimsen merged 481 commits from develop into master 2024-01-18 15:15:08 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 48d6792fa0 - Show all commits

View File

@ -38,7 +38,7 @@
class="col-xs-12 col-sm-6 q-pa-sm"
label="Benutzername"
:readonly="!newUser"
:rules="[isUIDUsed, notEmpty]"
:rules="[isFreeUID, notEmpty]"
autocomplete="username"
filled
/>
@ -183,9 +183,9 @@ export default defineComponent({
newPassword.value = '';
}
function isUIDUsed(val: string) {
function isFreeUID(val: string) {
return (
userStore.users.findIndex((user) => user.userid === val) !== -1 ||
userStore.users.findIndex((user) => user.userid === val) === -1 ||
'Benutzername ist schon vergeben'
);
}
@ -196,7 +196,7 @@ export default defineComponent({
canSetRoles,
isCurrentUser,
isEmail,
isUIDUsed,
isFreeUID,
newPassword,
notEmpty,
onAvatarRejected,

View File

@ -30,7 +30,7 @@
:options="permissions"
color="primary"
type="checkbox"
@input="updatePermissions"
@update:modelValue="updatePermissions"
/>
</q-scroll-area>
</q-card-section>