Skip to content

Commit

Permalink
Update Config.kt
Browse files Browse the repository at this point in the history
Fix a copy paste error
  • Loading branch information
dfuchss authored Jul 28, 2024
1 parent b8899f0 commit 729a611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/org/fuchss/matrix/yarb/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import java.io.File

/**
* This is the configuration template of YARB.
* @param[prefix] the command prefix the bot listens to. By default, "mensa"
* @param[prefix] the command prefix the bot listens to. By default, "yarb"
* @param[baseUrl] the base url of the matrix server the bot shall use
* @param[username] the username of the bot's account
* @param[password] the password of the bot's account
Expand All @@ -21,7 +21,7 @@ import java.io.File
* @param[offsetInMinutes] the offset for reminders in minutes. E.g. "5" means that the reminder will be sent 5 minutes before the actual time
*/
data class Config(
@JsonProperty override val prefix: String = "mensa",
@JsonProperty override val prefix: String = "yarb",
@JsonProperty override val baseUrl: String,
@JsonProperty override val username: String,
@JsonProperty override val password: String,
Expand Down

0 comments on commit 729a611

Please sign in to comment.