@Harisankar_Sahoo why is it working for me like this
module.exports = {
routes: [
{
// Path defined with a URL parameter
method: “GET”,
path: “/articles/count/view”,
handler: “article.count”,
},
],
};
and not working when i give
module.exports = {
routes: [
{
// Path defined with a URL parameter
method: “GET”,
path: “/articles/count”,
handler: “article.count”,
},
],
};