Alerting: Remove unused AlertRuleVersionWithPauseStatus (#82383)

Remove unused AlertRuleVersionWithPauseStatus
This commit is contained in:
Alexander Weaver
2024-02-13 10:56:24 -06:00
committed by GitHub
parent 3f940f4da1
commit ccb4533a86
4 changed files with 8 additions and 16 deletions

View File

@@ -24,5 +24,5 @@ type RuleStore interface {
DeleteAlertRulesByUID(ctx context.Context, orgID int64, ruleUID ...string) error
// IncreaseVersionForAllRulesInNamespace Increases version for all rules that have specified namespace. Returns all rules that belong to the namespace
IncreaseVersionForAllRulesInNamespace(ctx context.Context, orgID int64, namespaceUID string) ([]ngmodels.AlertRuleKeyWithVersionAndPauseStatus, error)
IncreaseVersionForAllRulesInNamespace(ctx context.Context, orgID int64, namespaceUID string) ([]ngmodels.AlertRuleKeyWithVersion, error)
}