Hide OIDC ID and ID columns for users

This commit is contained in:
Rafael Epplée 2025-12-02 16:59:46 +01:00
parent 726782f1e5
commit 70c6aff413
No known key found for this signature in database
GPG key ID: B4EFE6DC59FAE118
5 changed files with 21 additions and 30 deletions

View file

@ -90,8 +90,6 @@ defmodule MvWeb.ProfileNavigationTest do
# Verify we're on the correct profile page with OIDC specific information
{:ok, _profile_view, html} = live(conn, "/users/#{user.id}")
assert html =~ to_string(user.email)
# OIDC ID should be visible
assert html =~ "oidc_123"
# Password auth should be disabled for OIDC users
assert html =~ "Not enabled"
end