CompletionFilterProvider defines the interface for types that provide completion filter fields. Used by InstanceCrossSeedCompletionSettings for per-instance completion configuration.
| 120 | // CompletionFilterProvider defines the interface for types that provide completion filter fields. |
| 121 | // Used by InstanceCrossSeedCompletionSettings for per-instance completion configuration. |
| 122 | type CompletionFilterProvider interface { |
| 123 | GetCategories() []string |
| 124 | GetTags() []string |
| 125 | GetExcludeCategories() []string |
| 126 | GetExcludeTags() []string |
| 127 | } |
| 128 | |
| 129 | // DefaultCrossSeedAutomationSettings returns sensible defaults for RSS automation. |
| 130 | // RSS automation is disabled by default with a 2-hour interval. |
no outgoing calls
no test coverage detected