Uploaded image for project: 'Confluence Data Center'
  1. Confluence Data Center
  2. CONFSERVER-25367

Allow ability to set default value for "Notify Watchers" (During page edits) in the Administration Console

    • Icon: Suggestion Suggestion
    • Resolution: Duplicate
    • None
    • None
    • None
    • We collect Confluence feedback from various sources, and we evaluate what we've collected when planning our product roadmap. To understand how this piece of feedback will be reviewed, see our Implementation of New Features Policy.

      NOTE: This suggestion is for Confluence Server. Using Confluence Cloud? See the corresponding suggestion.

      Please allow the ability to set the Notify Watchers checkbox to default off or on in the Administration console. Some of our customers would prefer for it to be set to default off, to prevent email noise.

      Workaround:

      1. Navigate to Confluence Admin >> Custom HTML
      2. Insert the following At the End of the HEAD:
        <script type="text/javascript">
        AJS.toInit(function () {
          AJS.$('#notifyWatchers').attr('checked', false);
        });
        </script>
        

            [CONFSERVER-25367] Allow ability to set default value for "Notify Watchers" (During page edits) in the Administration Console

            Workaround for initial workaround:

            <script type="text/javascript">
            AJS.toInit(function () {
            
                var unsetNotify = function () {
                    $("#notifyWatchers").attr("checked", false);
                };
            
                var timer = setTimeout(unsetNotify, 1000);
            
                var status = AJS.$("#notifyWatchers").val();
                if (!status) clearTimeout(timer);
            });
            </script>

            Tomasz Dudzisz (Inactive) added a comment - - edited Workaround for initial workaround: <script type= "text/javascript" > AJS.toInit(function () { var unsetNotify = function () { $( "#notifyWatchers" ).attr( "checked" , false ); }; var timer = setTimeout(unsetNotify, 1000); var status = AJS.$( "#notifyWatchers" ).val(); if (!status) clearTimeout(timer); }); </script>

            Audra Eng added a comment -

            We need this in Confluence OnDemand! John - fix it!!! (your ex-VP-Product management is requesting it.)

            Audra Eng added a comment - We need this in Confluence OnDemand! John - fix it!!! (your ex-VP-Product management is requesting it.)

              jmasson@atlassian.com John Masson
              fsim Foo Sim (Inactive)
              Votes:
              2 Vote for this issue
              Watchers:
              8 Start watching this issue

                Created:
                Updated:
                Resolved: