mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Fix [here] links in Go code (#29722)
Fixes (partially) #29720. Split from website changes since this has different reviewers. Assigned to MDM for review since the non-comment change here touches setup experience. - [x] Changes file added to `orbit/changes`
This commit is contained in:
parent
8f86e4a73b
commit
6216009625
3 changed files with 5 additions and 3 deletions
1
orbit/changes/29720-link-text
Normal file
1
orbit/changes/29720-link-text
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Revised "Migrate to Fleet" link anchor text.
|
||||
|
|
@ -84,7 +84,7 @@ Select **Start** and Remote Management window will appear soon:` +
|
|||
var errorTemplate = template.Must(template.New("").Parse(`
|
||||
### Something's gone wrong.
|
||||
|
||||
Please contact your IT admin [here]({{ .ContactURL }}).
|
||||
Please [contact your IT admin]({{ .ContactURL }}).
|
||||
`))
|
||||
|
||||
var unenrollBody = "## Migrate to Fleet\nUnenrolling you from your old MDM. This could take 90 seconds...\n\n%s"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ import (
|
|||
"encoding/base64"
|
||||
"encoding/hex"
|
||||
"fmt"
|
||||
"github.com/fleetdm/fleet/v4/server/mdm"
|
||||
"net"
|
||||
"net/url"
|
||||
"regexp"
|
||||
|
|
@ -15,6 +14,8 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/fleetdm/fleet/v4/server/mdm"
|
||||
|
||||
"github.com/fleetdm/fleet/v4/server/config"
|
||||
"github.com/fleetdm/fleet/v4/server/contexts/ctxerr"
|
||||
"github.com/fleetdm/fleet/v4/server/contexts/logging"
|
||||
|
|
@ -506,7 +507,7 @@ var extraDetailQueries = map[string]DetailQuery{
|
|||
// the `mdm_bridge` table is used, the `mdmlocalmanagement.dll`
|
||||
// registers an MDM with ProviderID = `Local_Management`
|
||||
//
|
||||
// Entries also need to be filtered by their enrollment status, described [here][1]
|
||||
// Entries also need to be filtered by their [Intune enrollmentState][1]
|
||||
//
|
||||
// Member Value Description
|
||||
// unknown 0 Device enrollment state is unknown
|
||||
|
|
|
|||
Loading…
Reference in a new issue