mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-13 05:36:24 +00:00
fix wrong user quota type (int to int64)
This commit is contained in:
parent
014a0c6653
commit
4f50c4817a
@ -1,11 +1,11 @@
|
||||
package mocks
|
||||
|
||||
import mock "github.com/stretchr/testify/mock"
|
||||
import types "gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud/types"
|
||||
import (
|
||||
"gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud/types"
|
||||
)
|
||||
|
||||
// Client is an autogenerated mock type for the Client type
|
||||
type Client struct {
|
||||
mock.Mock
|
||||
}
|
||||
|
||||
// Apps provides a mock function with given fields:
|
||||
|
@ -33,8 +33,8 @@ type UserDetails struct {
|
||||
|
||||
type Quota struct {
|
||||
Free int64 `json:"free"`
|
||||
Used int `json:"used"`
|
||||
Used int64 `json:"used"`
|
||||
Total int64 `json:"total"`
|
||||
Relative float64 `json:"relative"`
|
||||
Quota int `json:"quota"`
|
||||
Quota int64 `json:"quota"`
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user