This is an automated email from the ASF dual-hosted git repository.
machristie pushed a change to branch AIRAVATA-3562
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git
from e02b4256 AIRAVATA-3565 Switch user profile editor to vuex store
new 493ed1a5 AIRAVATA-3565 WIP: Ext User Profile UI with load/saving text
and single_choice values
new 308744c4 AIRAVATA-3565 Ext User Profile UI with load/saving
multi_choice values
new 9f9760ea AIRAVATA-3565 Ext User Profile UI with load/saving
user_agreement values
new 0999c030 AIRAVATA-3565 Integrated link display for extended user
profile fields
new bdd614dc AIRAVATA-3565 Fix saving updates to extended user profile
fields
new 793b8f39 AIRAVATA-3565 Other field for single and multi choice fields
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../api/static/django_airavata_api/js/index.js | 6 +
.../js/models/ExtendedUserProfileField.js | 39 +++++
.../js/models/ExtendedUserProfileFieldChoice.js | 13 ++
.../js/models/ExtendedUserProfileFieldLink.js | 16 ++
.../js/models/ExtendedUserProfileValue.js | 18 ++
.../django_airavata_api/js/service_config.js | 10 ++
django_airavata/apps/auth/serializers.py | 6 +-
.../js/components/ExtendedUserProfileEditor.vue | 46 +++++
.../components/ExtendedUserProfileFieldEditor.vue | 38 ++++
.../ExtendedUserProfileMultiChoiceFieldEditor.vue | 101 +++++++++++
.../ExtendedUserProfileSingleChoiceFieldEditor.vue | 94 ++++++++++
.../ExtendedUserProfileTextFieldEditor.vue | 30 ++++
...ExtendedUserProfileUserAgreementFieldEditor.vue | 33 ++++
.../js/components/UserProfileEditor.vue | 2 +-
.../js/containers/UserProfileContainer.vue | 18 +-
.../django_airavata_auth/js/entry-user-profile.js | 10 +-
.../static/django_airavata_auth/js/store/index.js | 2 +
.../js/store/modules/extendedUserProfile.js | 195 +++++++++++++++++++++
django_airavata/apps/auth/urls.py | 4 +-
19 files changed, 671 insertions(+), 10 deletions(-)
create mode 100644
django_airavata/apps/api/static/django_airavata_api/js/models/ExtendedUserProfileField.js
create mode 100644
django_airavata/apps/api/static/django_airavata_api/js/models/ExtendedUserProfileFieldChoice.js
create mode 100644
django_airavata/apps/api/static/django_airavata_api/js/models/ExtendedUserProfileFieldLink.js
create mode 100644
django_airavata/apps/api/static/django_airavata_api/js/models/ExtendedUserProfileValue.js
create mode 100644
django_airavata/apps/auth/static/django_airavata_auth/js/components/ExtendedUserProfileEditor.vue
create mode 100644
django_airavata/apps/auth/static/django_airavata_auth/js/components/ExtendedUserProfileFieldEditor.vue
create mode 100644
django_airavata/apps/auth/static/django_airavata_auth/js/components/ExtendedUserProfileMultiChoiceFieldEditor.vue
create mode 100644
django_airavata/apps/auth/static/django_airavata_auth/js/components/ExtendedUserProfileSingleChoiceFieldEditor.vue
create mode 100644
django_airavata/apps/auth/static/django_airavata_auth/js/components/ExtendedUserProfileTextFieldEditor.vue
create mode 100644
django_airavata/apps/auth/static/django_airavata_auth/js/components/ExtendedUserProfileUserAgreementFieldEditor.vue