Skip to content

Commit

Permalink
000 small refactrnig (#2621)
Browse files Browse the repository at this point in the history
* 2508: fix and switch on job which clear unused pictures

* 2508: fix and switch on job which clear unused pictures

* 2590 fix version update

* 2590 fix version update

---------

Co-authored-by: Elena Moshnikova <[email protected]>
  • Loading branch information
ElenaSpb and Elena Moshnikova authored Oct 16, 2024
1 parent 0025ca7 commit 310cfca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/epam/brn/config/SwaggerConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class SwaggerConfig {
.contact(
Contact()
.name("Elena.Moshnikova")
.url("https://www.epam.com/")
.url("https://t.me/ElenaLovesSpb")
.email("[email protected]")
)

Expand Down
3 changes: 1 addition & 2 deletions src/main/kotlin/com/epam/brn/service/TokenHelperUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ class TokenHelperUtils {
fun getBearerToken(request: HttpServletRequest): String? {
var bearerToken: String? = null
val authorization = request.getHeader("Authorization")
if (StringUtils.hasText(authorization) && authorization.startsWith("Bearer ")) {
if (StringUtils.hasText(authorization) && authorization.startsWith("Bearer "))
bearerToken = authorization.substring(7)
}
return bearerToken
}
}
2 changes: 1 addition & 1 deletion src/main/resources/initFiles/series_sentences_ru.csv
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ level,code,exerciseName,orderNumber,words
12,sentence_with_3_words,Пойми предложение из 3 слов,2,(();(мудрая великая);(волшебница фея);(прощает поёт);();())
13,sentence_with_3_words,Пойми предложение из 3 слов,2,(();(великодушный трусливый);(рыцарь кузнец);(спрашивает отвечает);();())
13,sentence_with_3_words,Пойми предложение из 3 слов,2,(();(смелая храбрая);(муха лягушка);(сражается борется);();())
14,sentence_with_3_words,Пойми предложение из 3 слов,2,((три семь);();(поросёнка волчонка);(строят дуют);();())
14,sentence_with_3_words,Пойми предложение из 3 слов,2,((три четыре);();(поросёнка волчонка);(строят дуют);();())
15,sentence_with_3_words,Пойми предложение из 3 слов,2,((двенадцать семнадцать);();(лебедей червяков);(летят ползут);();())
16,sentence_with_3_words,Пойми предложение из 3 слов,2,((три два);();(дядюшки зайца);(бегут стоят);();())
17,sentence_with_3_words,Пойми предложение из 3 слов,2,((три четыре);();(зайчонка лисы);(пищат шумят);();())
Expand Down

0 comments on commit 310cfca

Please sign in to comment.