(ctx *gin.Context)
| 129 | } |
| 130 | |
| 131 | func (i *imlStrategyController) FilterGlobalOptions(ctx *gin.Context) ([]*strategy_dto.FilterOption, error) { |
| 132 | return i.filterOptions(ctx, strategy_filter.ScopeGlobal) |
| 133 | } |
| 134 | |
| 135 | func (i *imlStrategyController) GetStrategy(ctx *gin.Context, id string) (*strategy_dto.Strategy, error) { |
| 136 | return i.strategyModule.Get(ctx, id) |
nothing calls this directly
no test coverage detected