Skip to content

Commit

Permalink
minor fix to use the correct namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
datomo authored and danylokravchenko committed Dec 11, 2023
1 parent 2be35a0 commit 96d0f6f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@
package org.polypheny.db.webui.models.requests;


import com.fasterxml.jackson.annotation.JsonAlias;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
import lombok.Builder;
import lombok.experimental.SuperBuilder;
import lombok.extern.jackson.Jacksonized;
import org.polypheny.db.catalog.Catalog;
import org.polypheny.db.webui.models.SortState;


Expand All @@ -41,7 +43,9 @@ public class UIRequest extends RequestModel {


@JsonProperty
public String namespace;
@JsonAlias("database")
@Builder.Default
public String namespace = Catalog.defaultNamespaceName;

/**
* Information about the pagination,
Expand Down

0 comments on commit 96d0f6f

Please sign in to comment.