List available backends
(galleries []config.Gallery, systemState *system.SystemState)
| 370 | |
| 371 | // List available backends |
| 372 | func AvailableBackends(galleries []config.Gallery, systemState *system.SystemState) (GalleryElements[*GalleryBackend], error) { |
| 373 | return availableBackendsWithFilter(galleries, systemState, true) |
| 374 | } |
| 375 | |
| 376 | // AvailableBackendsUnfiltered returns all available backends without filtering by system capability. |
| 377 | func AvailableBackendsUnfiltered(galleries []config.Gallery, systemState *system.SystemState) (GalleryElements[*GalleryBackend], error) { |
no test coverage detected