custom-routes.js
913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const routes = {
routes: [
{
method: "POST",
path: "/end-users/finish-otp-verification",
handler: "api::end-user.end-user.finishEndUserOtpVerification",
config: {
// some configuration...
}
},
{
method: "POST",
path: "/end-users/apartment-filter-configuration",
handler: "api::end-user.end-user.apartmentfilterConfiguration",
config: {
// some configuration...
}
},
{
method: "POST",
path: "/end-users/bedroom-filter-configuration",
handler: "api::end-user.end-user.bedroomfilterConfiguration",
config: {
// some configuration...
}
},
{
method: "GET",
path: "/end-users/removedirectory/delete",
handler: "api::end-user.end-user.removedirectory",
config: {
// some configuration...
}
}
]
};
module.exports = routes;