Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User form fixes - convert user edit screens to functional, use user context, update api to patch #112

Merged
merged 2 commits into from
Oct 21, 2024

Conversation

himdel
Copy link
Collaborator

@himdel himdel commented Oct 19, 2024

Closes #106

Drop ActiveUserAPI, replace with UserAPI - also means real user info in profile
Fix PulpStatusAPI to use trailing slash.
Add pulp fields to UserType.
Add UserAPI.saveUser which deletes the fields we're not editing, and uses patch (update would unset the password whenever we weren't changing it).
Add updateUsername and updatePassword to UserContext, use when changing current user (to prevent logout on the next request).
Remove is_superuser remnants.
Update a couple of checks expecting to know current user id from context to use username.
Remove authentication provider from user form - pulp doesn't tell us.
Handle non_field_errors in user form.
Convert UserProfile, UserCreate and UserEdit to functional.
Restore save functionality in UserProfile.

Cc @lubosmj this should fix saving the user from user profile :)

himdel added a commit that referenced this pull request Oct 21, 2024
@lubosmj
Copy link
Member

lubosmj commented Oct 21, 2024

image

It appears like this change has helped! Thanks!

In [2]: User.objects.first()
Out[2]: <User: admin>

In [3]: User.objects.first().last_name
Out[3]: 'Novak'

@himdel himdel merged commit 6e612f2 into main Oct 21, 2024
1 of 2 checks passed
@himdel himdel deleted the fix-user-edit branch October 21, 2024 20:42
@himdel himdel mentioned this pull request Oct 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Not able to update the admin user via the UI
2 participants