2 Commits
Author SHA1 Message Date
KKlochko 669a288ef1 Update the version.
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-06-04 12:49:14 +03:00
KKlochko b47d994989 Add the JSON API route to search by BookID. 2025-06-04 12:42:04 +03:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -8,6 +8,7 @@ defmodule DecentralisedBookIndex.Metadata do
base_route "/books", Metadata.Book do base_route "/books", Metadata.Book do
get :by_id get :by_id
index :search index :search
index :search_by_bid, route: "/search-by-bid"
related :bids, :read, primary?: true related :bids, :read, primary?: true
related :author_roles, :read, primary?: true related :author_roles, :read, primary?: true
+1 -1
View File
@@ -4,7 +4,7 @@ defmodule DecentralisedBookIndex.MixProject do
def project do def project do
[ [
app: :decentralised_book_index, app: :decentralised_book_index,
version: "1.0.0", version: "1.1.0",
elixir: "~> 1.14", elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()), elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod, start_permanent: Mix.env() == :prod,