mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-10 00:04:22 -05:00
18 lines
416 B
JavaScript
18 lines
416 B
JavaScript
export function deprecatedEndpoint(_, res) {
|
|
return res.status(410).json({
|
|
message: {
|
|
type: 'info',
|
|
message: 'Please reload the app, this feature is no longer available.'
|
|
}
|
|
});
|
|
}
|
|
|
|
export function temporarilyDisabledEndpoint(_, res) {
|
|
return res.status(404).json({
|
|
message: {
|
|
type: 'info',
|
|
message: 'Please reload the app, this feature is no longer available.'
|
|
}
|
|
});
|
|
}
|