-
-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
go fmt ./internal/config/helpers.gen.go
Showing
1 changed file
with
19 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
// GoToSocial | ||
// Copyright (C) GoToSocial Authors [email protected] | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
// | ||
// | ||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
|
@@ -3167,13 +3167,19 @@ func (st *ConfigState) SetCacheConversationLastStatusIDsMemRatio(v float64) { | |
} | ||
|
||
// CacheConversationLastStatusIDsMemRatioFlag returns the flag name for the 'Cache.ConversationLastStatusIDsMemRatio' field | ||
func CacheConversationLastStatusIDsMemRatioFlag() string { return "cache-conversation-last-status-ids-mem-ratio" } | ||
func CacheConversationLastStatusIDsMemRatioFlag() string { | ||
return "cache-conversation-last-status-ids-mem-ratio" | ||
} | ||
|
||
// GetCacheConversationLastStatusIDsMemRatio safely fetches the value for global configuration 'Cache.ConversationLastStatusIDsMemRatio' field | ||
func GetCacheConversationLastStatusIDsMemRatio() float64 { return global.GetCacheConversationLastStatusIDsMemRatio() } | ||
func GetCacheConversationLastStatusIDsMemRatio() float64 { | ||
return global.GetCacheConversationLastStatusIDsMemRatio() | ||
} | ||
|
||
// SetCacheConversationLastStatusIDsMemRatio safely sets the value for global configuration 'Cache.ConversationLastStatusIDsMemRatio' field | ||
func SetCacheConversationLastStatusIDsMemRatio(v float64) { global.SetCacheConversationLastStatusIDsMemRatio(v) } | ||
func SetCacheConversationLastStatusIDsMemRatio(v float64) { | ||
global.SetCacheConversationLastStatusIDsMemRatio(v) | ||
} | ||
|
||
// GetCacheDomainPermissionDraftMemRation safely fetches the Configuration value for state's 'Cache.DomainPermissionDraftMemRation' field | ||
func (st *ConfigState) GetCacheDomainPermissionDraftMemRation() (v float64) { | ||
|
@@ -3192,13 +3198,19 @@ func (st *ConfigState) SetCacheDomainPermissionDraftMemRation(v float64) { | |
} | ||
|
||
// CacheDomainPermissionDraftMemRationFlag returns the flag name for the 'Cache.DomainPermissionDraftMemRation' field | ||
func CacheDomainPermissionDraftMemRationFlag() string { return "cache-domain-permission-draft-mem-ratio" } | ||
func CacheDomainPermissionDraftMemRationFlag() string { | ||
return "cache-domain-permission-draft-mem-ratio" | ||
} | ||
|
||
// GetCacheDomainPermissionDraftMemRation safely fetches the value for global configuration 'Cache.DomainPermissionDraftMemRation' field | ||
func GetCacheDomainPermissionDraftMemRation() float64 { return global.GetCacheDomainPermissionDraftMemRation() } | ||
func GetCacheDomainPermissionDraftMemRation() float64 { | ||
return global.GetCacheDomainPermissionDraftMemRation() | ||
} | ||
|
||
// SetCacheDomainPermissionDraftMemRation safely sets the value for global configuration 'Cache.DomainPermissionDraftMemRation' field | ||
func SetCacheDomainPermissionDraftMemRation(v float64) { global.SetCacheDomainPermissionDraftMemRation(v) } | ||
func SetCacheDomainPermissionDraftMemRation(v float64) { | ||
global.SetCacheDomainPermissionDraftMemRation(v) | ||
} | ||
|
||
// GetCacheEmojiMemRatio safely fetches the Configuration value for state's 'Cache.EmojiMemRatio' field | ||
func (st *ConfigState) GetCacheEmojiMemRatio() (v float64) { | ||
|
@@ -4424,4 +4436,3 @@ func GetRequestIDHeader() string { return global.GetRequestIDHeader() } | |
|
||
// SetRequestIDHeader safely sets the value for global configuration 'RequestIDHeader' field | ||
func SetRequestIDHeader(v string) { global.SetRequestIDHeader(v) } | ||
|