You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQL"select * from #$TABLE_NAME where #$TYPE = #$TYPE_UNDIRECTED AND #$SEARCH_INPUT_ID in ($idGroup)".as((sqlParser ~ get[SearchInputId](SEARCH_INPUT_ID)).*).map { case rule ~ id =>
Copy file name to clipboardExpand all lines: app/models/spellings/AlternativeSpelling.scala
+1-1
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,6 @@ object AlternativeSpelling {
79
79
SQL"select * from #$TABLE_NAME where #$CANONICAL_SPELLING_ID in ($idGroup)".as((sqlParser ~ get[CanonicalSpellingId](CANONICAL_SPELLING_ID)).*).map { case alternativeSpelling ~ id =>
if (CommonHelper.isBlank(username)) thrownewCredentialsException("Username cannot be blank")
20
23
if (CommonHelper.isBlank(password)) thrownewCredentialsException("Password cannot be blank")
21
24
if (CommonHelper.areNotEquals(username.toLowerCase, validUserId.toLowerCase)) thrownewCredentialsException("Username : '"+ username +"' does not match valid user")
@@ -24,6 +27,7 @@ case class ConfiguredBasicAuthAuthenticator(validUserId: String, validPassword:
//Sorting is necessary because play.api.libs.json considers JsArray with same elements but different ordering as not equal. (behaviour tested up to play version 2.8.8)
222
222
defsortArrays(json: JsValue):JsValue= json match {
0 commit comments