Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public class CoreSettingsResponse extends ManagerResponse {
private Boolean coreRealtimeEnabled;
private Boolean coreCdrEnabled;
private Boolean coreHttpEnabled;
private Boolean soundsSearchCustomDir;

/**
* Returns the version of the Asterisk Manager Interface (AMI). For Asterisk 1.6 this is "1.1".
Expand Down Expand Up @@ -152,4 +153,12 @@ public boolean isCoreHttpEnabled() {
public void setCoreHttpEnabled(Boolean coreHttpEnabled) {
this.coreHttpEnabled = coreHttpEnabled;
}

public boolean isSoundsSearchCustomDir() {
return soundsSearchCustomDir != null && soundsSearchCustomDir;
}

public void setSoundsSearchCustomDir(Boolean soundsSearchCustomDir) {
this.soundsSearchCustomDir = soundsSearchCustomDir;
}
}