mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
remove MDM middleware from 2 endpoints (#23997)
- Integration tests upcoming with https://app.zenhub.com/workspaces/g-endpoint-ops-current-sprint-63bd7e0bf75dba002a2343ac/issues/gh/fleetdm/fleet/23587 Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
This commit is contained in:
parent
70d01d9a48
commit
332453f983
1 changed files with 2 additions and 2 deletions
|
|
@ -702,8 +702,8 @@ func attachFleetAPIRoutes(r *mux.Router, svc fleet.Service, config config.FleetC
|
|||
|
||||
// Deprecated: GET /mdm/hosts/:id/encryption_key is now deprecated, replaced by
|
||||
// GET /hosts/:id/encryption_key.
|
||||
mdmAnyMW.GET("/api/_version_/fleet/mdm/hosts/{id:[0-9]+}/encryption_key", getHostEncryptionKey, getHostEncryptionKeyRequest{})
|
||||
mdmAnyMW.GET("/api/_version_/fleet/hosts/{id:[0-9]+}/encryption_key", getHostEncryptionKey, getHostEncryptionKeyRequest{})
|
||||
ue.GET("/api/_version_/fleet/mdm/hosts/{id:[0-9]+}/encryption_key", getHostEncryptionKey, getHostEncryptionKeyRequest{})
|
||||
ue.GET("/api/_version_/fleet/hosts/{id:[0-9]+}/encryption_key", getHostEncryptionKey, getHostEncryptionKeyRequest{})
|
||||
|
||||
// Deprecated: GET /mdm/profiles/summary is now deprecated, replaced by the
|
||||
// GET /configuration_profiles/summary endpoint.
|
||||
|
|
|
|||
Loading…
Reference in a new issue