This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues/pull-requests.
dashy/services/serverless-functions/not-supported.js

9 lines
245 B
JavaScript

/* A Netlify cloud function to return a message endpoints that are not available */
exports.handler = async () => ({
statusCode: 200,
body: JSON.stringify({
success: false,
error: 'This action is not supported on Netlify',
}),
});