Is it possible to make Sugar Dashboard Uneditable for Regular Users?

 Is it possible to make Sugar Dashboard Uneditable for Regular Users?

Parents Reply
  • I`m sorry, but I does not see any changes or differens in the My Dashbord or My Legasy Dashbord in both cases(Regular User or Administrator). I user Repair, I use developer mode (or not developer, no difference what), but I does not understand what it is not working.
    ({
        editClicked: function(evt) {
            // validate user    
            if( app.user.get('type') != "admin" ){
     
                // here you can show an alert
                app.alert.show('message-id', {
                    level: 'error',
                    title: "You aren't admin"
                });

            } else{
            this._super("editClicked", [evt]);
          }
        }
    })

Children