Add RegisterAddress with with predefined targetRegisterHost values
This commit is contained in:
parent
4c9c6544a3
commit
e5e80cd51f
2 changed files with 15 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
import io.github.wulkanowy.messages.pojo.Message
|
||||
import io.github.wulkanowy.messages.pojo.MessagePriority
|
||||
import io.github.wulkanowy.messages.pojo.MessageType
|
||||
import io.github.wulkanowy.messages.pojo.RegisterAddress
|
||||
|
||||
val messages = listOf(
|
||||
Message(
|
||||
|
@ -9,7 +10,7 @@ val messages = listOf(
|
|||
content = "Przez aktualizację dziennika Gdańskiej Platformy Edukacyjnej przestało działać logowanie w Wulkanowym. Przez to przy odświeżaniu danych pokazuje się komunikat o braku połączenia z internetem. Pracujemy nad poprawką, która powinna pojawić się w aktualizacji do końca tego tygodnia",
|
||||
priority = MessagePriority.HIGH,
|
||||
destinationUrl = "https://twitter.com/wulkanowy/status/1471930756087914511",
|
||||
targetRegisterHost = "edu.gdansk.pl",
|
||||
targetRegisterHost = RegisterAddress.EDU_GDANSK.url,
|
||||
type = MessageType.DASHBOARD_MESSAGE,
|
||||
isVisible = true,
|
||||
),
|
||||
|
|
13
pojos/src/main/kotlin/RegisterAddress.kt
Normal file
13
pojos/src/main/kotlin/RegisterAddress.kt
Normal file
|
@ -0,0 +1,13 @@
|
|||
package io.github.wulkanowy.messages.pojo
|
||||
|
||||
enum class RegisterAddress(val url: String) {
|
||||
VULCAN("https://vulcan.net.pl"),
|
||||
E_SZKOLA_OPOLSKIE("https://eszkola.opolskie.pl"),
|
||||
EDU_GDANSK("https://edu.gdansk.pl"),
|
||||
EDU_LUBLIN("https://edu.lublin.eu"),
|
||||
UMT_TARNOW("https://umt.tarnow.pl"),
|
||||
RESMAN("https://resman.pl"),
|
||||
EDU_PORTAL_KOSZALIN("https://eduportal.koszalin.pl"),
|
||||
FAKE_LOG("http://fakelog.cf")
|
||||
}
|
||||
|
Loading…
Reference in a new issue