mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-14 16: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
|
package mocks
|
||||||
|
|
||||||
import mock "github.com/stretchr/testify/mock"
|
import (
|
||||||
import types "gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud/types"
|
"gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud/types"
|
||||||
|
)
|
||||||
|
|
||||||
// Client is an autogenerated mock type for the Client type
|
// Client is an autogenerated mock type for the Client type
|
||||||
type Client struct {
|
type Client struct {
|
||||||
mock.Mock
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Apps provides a mock function with given fields:
|
// Apps provides a mock function with given fields:
|
||||||
|
@ -33,8 +33,8 @@ type UserDetails struct {
|
|||||||
|
|
||||||
type Quota struct {
|
type Quota struct {
|
||||||
Free int64 `json:"free"`
|
Free int64 `json:"free"`
|
||||||
Used int `json:"used"`
|
Used int64 `json:"used"`
|
||||||
Total int64 `json:"total"`
|
Total int64 `json:"total"`
|
||||||
Relative float64 `json:"relative"`
|
Relative float64 `json:"relative"`
|
||||||
Quota int `json:"quota"`
|
Quota int64 `json:"quota"`
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user