1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

rate limiting org invite emails further

This commit is contained in:
Kyle Spearrin 2019-01-20 22:13:43 -05:00
parent 6648e8db15
commit f78f2710be

View File

@ -183,6 +183,26 @@
"Endpoint": "post:/installations",
"Period": "2m",
"Limit": 2
},
{
"Endpoint": "post:/organizations/*/users/invite",
"Period": "1m",
"Limit": 4
},
{
"Endpoint": "post:/organizations/*/users/invite",
"Period": "1d",
"Limit": 300
},
{
"Endpoint": "post:/organizations/*/users/*/reinvite",
"Period": "1m",
"Limit": 4
},
{
"Endpoint": "post:/organizations/*/users/*/reinvite",
"Period": "1d",
"Limit": 300
}
]
},