Skip to content

Commit

Permalink
fix(admin-ui): fix identification for user fields
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed May 23, 2022
1 parent ce2f3c8 commit fbb0a39
Showing 1 changed file with 47 additions and 47 deletions.
94 changes: 47 additions & 47 deletions admin-ui/plugins/admin/components/UserManagement/constLists.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export const initialClaims = [
type: 'text',
class: 'form-control',
},
id: 'userType',
id: 'employeeType',
},
{
type: 'select',
Expand All @@ -425,51 +425,51 @@ export const initialClaims = [
},
id: 'preferredLanguage',
},
{
type: 'select',
name: 'Timezone',
attributes: {
type: 'select',
class: 'form-control',
values: timezones,
},
id: 'timezone',
},
// {
// type: 'select',
// name: 'Timezone',
// attributes: {
// type: 'select',
// class: 'form-control',
// values: timezones,
// },
// id: 'timezone',
// },
{
type: 'input',
name: 'Birthday',
attributes: {
type: 'date',
class: 'form-control',
},
id: 'birthday',
id: 'birthdate',
},
{
type: 'input',
name: 'CIBA Device Registration Token',
name: 'IMAP Data',
attributes: {
type: 'text',
class: 'form-control',
},
id: 'cibaDeviceRegistrationToken',
id: 'jansIMAPData',
},
{
type: 'input',
name: 'CIBA User Code',
name: 'Associated Clnt',
attributes: {
type: 'text',
class: 'form-control',
},
id: 'cibaUserCode',
id: 'jansAssociatedClnt',
},
{
type: 'input',
name: 'Country',
name: 'Address',
attributes: {
type: 'text',
class: 'form-control',
},
id: 'country',
id: 'jansAddres',
},
{
type: 'input',
Expand All @@ -478,7 +478,7 @@ export const initialClaims = [
type: 'text',
class: 'form-control',
},
id: 'enrollmentCode',
id: 'jansEnrollmentCode',
},
{
type: 'select',
Expand All @@ -497,25 +497,25 @@ export const initialClaims = [
type: 'text',
class: 'form-control',
},
id: 'impaData',
id: 'jansIMAPData',
},
{
type: 'input',
name: 'Organization',
name: 'Organizations',
attributes: {
type: 'text',
class: 'form-control',
},
id: 'organization',
id: 'jansManagedOrganizations',
},
{
type: 'input',
name: 'Open ID Connect JSON formatted address',
name: 'Postal Address',
attributes: {
type: 'text',
class: 'form-control',
},
id: 'openIdConnectJsonFormattedAddress',
id: 'homePostalAddress',
},
{
type: 'select',
Expand All @@ -534,25 +534,25 @@ export const initialClaims = [
type: 'url',
class: 'form-control',
},
id: 'pictureUrl',
},
{
type: 'input',
name: 'Preferred username',
attributes: {
type: 'text',
class: 'form-control',
},
id: 'preferredUsername',
id: 'picture',
},
// {
// type: 'input',
// name: 'Preferred username',
// attributes: {
// type: 'text',
// class: 'form-control',
// },
// id: 'preferredUsername',
// },
{
type: 'input',
name: 'Profile URL',
attributes: {
type: 'url',
class: 'form-control',
},
id: 'profileUrl',
id: 'jansProfileURL',
},
{
type: 'input',
Expand All @@ -574,12 +574,12 @@ export const initialClaims = [
},
{
type: 'input',
name: 'Time Zone info',
name: 'Zone info',
attributes: {
type: 'text',
class: 'form-control',
},
id: 'timeZoneInfo',
id: 'zoneinfo',
},
{
type: 'input',
Expand All @@ -599,22 +599,22 @@ export const initialClaims = [
},
id: 'userCertificate',
},
{
type: 'text',
name: 'User Permission',
attributes: {
type: 'text',
class: 'form-control',
},
id: 'userPermission',
},
// {
// type: 'text',
// name: 'User Permission',
// attributes: {
// type: 'text',
// class: 'form-control',
// },
// id: 'userPermission',
// },
{
type: 'text',
name: 'Website URL',
attributes: {
type: 'url',
class: 'form-control',
},
id: 'websiteUrl',
id: 'website',
},
]

0 comments on commit fbb0a39

Please sign in to comment.