Skip to content

Commit

Permalink
run sbt scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinBeczak committed Jan 13, 2025
1 parent 731c7b2 commit 679db6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/org/maproulette/models/dal/ChallengeDAL.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1853,13 +1853,13 @@ class ChallengeDAL @Inject() (
}

searchParameters.challengeParams.archived match {
case Some(false) | None => this.appendInWhereClause(whereClause, s"c.is_archived = false")
case _ =>
case Some(false) | None => this.appendInWhereClause(whereClause, s"c.is_archived = false")
case _ =>
}

searchParameters.challengeParams.filterGlobal match {
case Some(true) | None => this.appendInWhereClause(whereClause, s"c.is_global = false")
case _ =>
case _ =>
}

searchParameters.challengeParams.requiresLocal match {
Expand Down

0 comments on commit 679db6d

Please sign in to comment.