We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4b12e7 commit ae1c284Copy full SHA for ae1c284
1 file changed
app/Models/Foundation/Summit/Summit.php
@@ -4026,6 +4026,7 @@ public function addFeatureType(SummitBadgeFeatureType $feature_type): void
4026
if ($this->badge_features_types->contains($feature_type)) return;
4027
$this->badge_features_types->add($feature_type);
4028
$feature_type->setSummit($this);
4029
+ $this->updated(null);
4030
}
4031
4032
/**
@@ -4036,6 +4037,7 @@ public function removeFeatureType(SummitBadgeFeatureType $feature_type): void
4036
4037
if (!$this->badge_features_types->contains($feature_type)) return;
4038
$this->badge_features_types->removeElement($feature_type);
4039
$feature_type->clearSummit();
4040
4041
4042
4043
0 commit comments