mirror of
https://github.com/twitter/the-algorithm.git
synced 2024-12-22 02:01:51 +01:00
Merge 7975fcdb8d
into 72eda9a24f
This commit is contained in:
commit
129bde0904
@ -130,6 +130,7 @@ object Reason {
|
||||
case object LocalLawsWithheld extends Reason
|
||||
case object HatefulConduct extends Reason
|
||||
case object AbusiveBehavior extends Reason
|
||||
case object Spamming extends Reason // Add a new case object for "Spamming"
|
||||
|
||||
case object NotSupportedOnDevice extends Reason
|
||||
|
||||
@ -190,6 +191,7 @@ object Reason {
|
||||
reason match {
|
||||
case HatefulConduct => Some(AppealableReason.HatefulConduct(violationLevel.level))
|
||||
case AbusiveBehavior => Some(AppealableReason.AbusiveBehavior(violationLevel.level))
|
||||
case Spamming => Some(AppealableReason.Spamming(violationLevel.level)) // New case for handling Spamming
|
||||
case _ => Some(AppealableReason.Unspecified(violationLevel.level))
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user