(ctx *gin.Context)
| 125 | } |
| 126 | |
| 127 | func (i *imlStrategyController) FilterServiceOptions(ctx *gin.Context) ([]*strategy_dto.FilterOption, error) { |
| 128 | return i.filterOptions(ctx, strategy_filter.ScopeService) |
| 129 | } |
| 130 | |
| 131 | func (i *imlStrategyController) FilterGlobalOptions(ctx *gin.Context) ([]*strategy_dto.FilterOption, error) { |
| 132 | return i.filterOptions(ctx, strategy_filter.ScopeGlobal) |
nothing calls this directly
no test coverage detected