mirror of
				https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
				synced 2025-11-04 05:11:46 +00:00 
			
		
		
		
	fix wrong user quota type (int to int64)
This commit is contained in:
		@@ -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"`
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user