File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -88,10 +88,6 @@ type ApplicationConfig struct {
8888
8989 OpenResponsesStoreTTL time.Duration // TTL for Open Responses store (0 = no expiration)
9090
91- BackendImagesReleaseTag string // Release tag for backend images (e.g., "latest")
92- BackendImagesBranchTag string // Branch tag for backend images (e.g., "master")
93- BackendDevSuffix string // Development suffix for backend images (e.g., "development")
94-
9591 PathWithoutAuth []string
9692}
9793
@@ -486,26 +482,6 @@ func WithOpenResponsesStoreTTL(ttl time.Duration) AppOption {
486482 }
487483}
488484
489-
490- func WithBackendImagesReleaseTag (tag string ) AppOption {
491- return func (o * ApplicationConfig ) {
492- o .BackendImagesReleaseTag = tag
493- }
494- }
495-
496- func WithBackendImagesBranchTag (tag string ) AppOption {
497- return func (o * ApplicationConfig ) {
498- o .BackendImagesBranchTag = tag
499- }
500- }
501-
502- func WithBackendDevSuffix (suffix string ) AppOption {
503- return func (o * ApplicationConfig ) {
504- o .BackendDevSuffix = suffix
505- }
506- }
507-
508-
509485func WithEnforcedPredownloadScans (enforced bool ) AppOption {
510486 return func (o * ApplicationConfig ) {
511487 o .EnforcePredownloadScans = enforced
You can’t perform that action at this time.
0 commit comments