mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
receive POST requests (fix for https://github.com/fleetdm/fleet/pull/1314)
This commit is contained in:
parent
d9431e4da5
commit
2cea0c8c2c
1 changed files with 1 additions and 1 deletions
2
website/config/routes.js
vendored
2
website/config/routes.js
vendored
|
|
@ -67,6 +67,6 @@ module.exports.routes = {
|
||||||
// Note that, in this app, these API endpoints may be accessed using the `Cloud.*()` methods
|
// Note that, in this app, these API endpoints may be accessed using the `Cloud.*()` methods
|
||||||
// from the Parasails library, or by using those method names as the `action` in <ajax-form>.
|
// from the Parasails library, or by using those method names as the `action` in <ajax-form>.
|
||||||
'POST /api/v1/deliver-contact-form-message': { action: 'deliver-contact-form-message' },
|
'POST /api/v1/deliver-contact-form-message': { action: 'deliver-contact-form-message' },
|
||||||
'GET /api/v1/receive-usage-analytics': { action: 'receive-usage-analytics' },
|
'POST /api/v1/receive-usage-analytics': { action: 'receive-usage-analytics' },
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue