Skip to content

Commit

Permalink
Merge branch 'master' into disable-jmx-by-default
Browse files Browse the repository at this point in the history
  • Loading branch information
mekya authored Mar 24, 2024
2 parents 9cb3850 + 519cb7a commit c8ba28f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/io/antmedia/datastore/db/types/Subscriber.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import org.bson.types.ObjectId;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonProperty.Access;

import dev.morphia.annotations.Entity;
import dev.morphia.annotations.Field;
Expand Down Expand Up @@ -51,7 +53,7 @@ public class Subscriber {
/**
* Secret code of the Subscriber
*/
@JsonIgnore
@JsonProperty(access = Access.WRITE_ONLY)
@Schema(description = "Secret code of the subscriber")
private String b32Secret;

Expand Down

0 comments on commit c8ba28f

Please sign in to comment.