How to turn off upgrade message in Umbraco backoffice

Viewed 2964

Is it possible to turn off the Umbraco upgrade message in the Umbraco backoffice. Don't necessarily want my users to see this.

3 Answers

Umbraco 9 and Umbraco 10

Add VersionCheckPeriod to the appsettings.json.

{
  "Umbraco": {
    "CMS": {
      "Global": {
        "VersionCheckPeriod": 0
      }
    }
  }
}

When this value is set above 0, the backoffice will check for a new version of Umbraco every 'x' number of days where 'x' is the value defined for this setting. Set this value to 0 to never check for a new version.

References:

The code for the API controller is also here: https://github.com/umbraco/Umbraco-CMS/blob/e626fca2432582f052cb13654eedd9e60ef8723f/src/Umbraco.Web.BackOffice/Controllers/UpdateCheckController.cs#L47

Related