##// END OF EJS Templates
auth: disable password change form for accounts that are not managed by RhodeCode....
auth: disable password change form for accounts that are not managed by RhodeCode. - in case of external accounts such as LDAP/oAuth, password reset doesn't make sense. - make it consisten with other disable forms for external account - fixes #5150

File last commit:

r882:d869b56a default
r1275:b650c2de default
Show More
rhodecode-toast.js
40 lines | 1.1 KiB | application/javascript | JavascriptLexer
Polymer({
is: 'rhodecode-toast',
properties: {
toasts: {
type: Array,
value: function(){
return []
}
}
},
observers: [
'_changedToasts(toasts.splices)'
],
_changedToasts: function(newValue, oldValue){
this.$['p-toast'].notifyResize();
$.Topic('/favicon/update').publish({count: this.toasts.length});
},
dismissNotifications: function(){
this.$['p-toast'].close();
$.Topic('/favicon/update').publish({count: 0});
},
handleClosed: function(){
this.splice('toasts', 0);
},
open: function(){
this.$['p-toast'].open();
},
handleNotification: function(data){
if (!templateContext.rhodecode_user.notification_status && !data.message.force) {
// do not act if notifications are disabled
return
}
this.push('toasts',{
level: data.message.level,
message: data.message.message
});
this.open();
},
_gettext: _gettext
});