IMPORTANT: We are moving to Discord (link: https://discord.gg/TSEcDRP)! Support @Gitter is no longer guaranteed
icebob on master
fix: disableHeartbeatChecks sho… same opts issue with "disableOf… Merge pull request #858 from ke… (compare)
icebob on master
Wrap decryption code in a try b… log the error if decryption fai… Merge pull request #853 from ci… (compare)
Hi, i need to populate field
i used like this
settings: {
populates:{
"categories": "categories.get"
}
}
this.adapter.find({
query : {
status: 2,
_id: project_id
},
populate : ['categories']
});
but it doesne't work
i need data like this
[
{
"status": 2,
"name": "Test Name"
"categories": [
{
"_id": 1,
"name": "Collectibles"
},
{
"_id": 34,
"name": "watch"
}
]
}
]
instead it returns like this
[
{
"status": 2,
"name": "Test Name"
"categories": [1,34]
}
]
Hi guys,
I am trying to authenticate some routes and not others.
anyone has an idea?
/api/users
/api/posts
chat
, notifications
and users
. Any idea? Thanks!
Hi there.
How do I change bodyparser json limit in moleculer-web?
Attempt:
@Service({
name: "api",
mixins: [
ApiGateway,
],
settings: {
routes: [
{
authentication: true,
whitelist: [
'api.ok',
],
aliases: {
'/': 'api.ok',
},
bodyParsers: {
json: { limit: "5MB" },
urlencoded: { extended: true, limit: "5MB" }
}
}]
}
})
But don't work =/