in gr-serviceuser/gr-serviceuser-detail.js [37:86]
static get properties() {
return {
_restApi: Object,
_serviceUserId: String,
_serviceUser: Object,
_loading: {
type: Boolean,
value: true,
},
_statusButtonText: {
type: String,
value: 'Activate',
},
_prefsChanged: {
type: Boolean,
value: false,
},
_changingPrefs: {
type: Boolean,
value: false,
},
_isAdmin: {
type: Boolean,
value: false,
},
_allowEmail: {
type: Boolean,
value: false,
},
_allowOwner: {
type: Boolean,
value: false,
},
_allowHttpPassword: {
type: Boolean,
value: false,
},
_newFullName: String,
_newEmail: String,
_availableOwners: Array,
_newOwner: String,
_ownerChangeWarning: String,
_query: {
type: Function,
value() {
return this._getGroupSuggestions.bind(this);
},
},
};
}