made email readonly and fixed some unit tests

This commit is contained in:
David Kennedy 2024-07-09 16:48:03 -04:00
parent be43bbc8b7
commit a7abfa9cdb
No known key found for this signature in database
GPG key ID: 6528A5386E66B96B
4 changed files with 5 additions and 4 deletions

View file

@ -54,7 +54,6 @@ class UserProfileView(UserProfilePermissionView, FormMixin):
def get_context_data(self, **kwargs):
"""Extend get_context_data to include has_profile_feature_flag"""
context = super().get_context_data(**kwargs)
logger.info("UserProfileView::get_context_data")
# This is a django waffle flag which toggles features based off of the "flag" table
context["has_profile_feature_flag"] = flag_is_active(self.request, "profile_feature")