Skip to content

Commit

Permalink
3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Senderman committed Sep 1, 2022
1 parent e6108a8 commit 1bfca58
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'com.senderman'
version '3.3.0'
version '3.4.0'

repositories {
mavenCentral()
Expand Down
14 changes: 7 additions & 7 deletions src/main/java/com/senderman/telecrafter/config/ConfigImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,28 @@

public class ConfigImpl implements Config {

@JsonProperty
@JsonProperty(required = true)
private String botToken;

@JsonProperty
@JsonProperty(required = true)
private String botName;

@JsonProperty
@JsonProperty(required = true)
private Long chatId;

@JsonProperty(defaultValue = "false")
private boolean allowForeignChats;

@JsonProperty
@JsonProperty(required = true)
private Set<Long> admins;

@JsonProperty
@JsonProperty(required = true)
private Set<Long> ignoredUsers;

@JsonProperty
@JsonProperty(required = true)
private Set<String> forceAdminCommands;

@JsonProperty
@JsonProperty(required = true)
private Map<String, Alias> aliases;

@Override
Expand Down

0 comments on commit 1bfca58

Please sign in to comment.