Fix default period

This commit is contained in:
Bubka
2024-04-17 00:04:04 +02:00
parent 5a74a37348
commit 64381c1a25
3 changed files with 9 additions and 5 deletions

View File

@ -134,7 +134,7 @@ export default {
*
* @returns promise
*/
getauthentications(id, period = 90, limit, config = {}) {
getauthentications(id, period = 12, limit, config = {}) {
return apiClient.get('/users/' + id + '/authentications?period=' + period + (limit ? '&limit=' + limit : ''), { ...config })
},