mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fix merge conflict for edit dialog succeeded and pw not required
This commit is contained in:
parent
a08467342c
commit
d840308392
@ -620,7 +620,7 @@ export class SettingsComponent
|
||||
})
|
||||
modal.componentInstance.dialogMode = user ? 'edit' : 'create'
|
||||
modal.componentInstance.object = user
|
||||
modal.componentInstance.success
|
||||
modal.componentInstance.succeeded
|
||||
.pipe(takeUntil(this.unsubscribeNotifier))
|
||||
.subscribe({
|
||||
next: (newUser) => {
|
||||
@ -676,7 +676,7 @@ export class SettingsComponent
|
||||
})
|
||||
modal.componentInstance.dialogMode = group ? 'edit' : 'create'
|
||||
modal.componentInstance.object = group
|
||||
modal.componentInstance.success
|
||||
modal.componentInstance.succeeded
|
||||
.pipe(takeUntil(this.unsubscribeNotifier))
|
||||
.subscribe({
|
||||
next: (newGroup) => {
|
||||
|
@ -18,7 +18,7 @@ class ObfuscatedUserPasswordField(serializers.Field):
|
||||
|
||||
class UserSerializer(serializers.ModelSerializer):
|
||||
|
||||
password = ObfuscatedUserPasswordField()
|
||||
password = ObfuscatedUserPasswordField(required=False)
|
||||
user_permissions = serializers.SlugRelatedField(
|
||||
many=True,
|
||||
queryset=Permission.objects.all(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user