Add oban web, securities table and accounts table

This commit is contained in:
2025-01-28 09:46:52 +01:00
parent 2f03f92481
commit f7a1488f27
7 changed files with 41 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
defmodule Tradex.Schema do
@moduledoc false
defmacro __using__(opts) do
defmacro __using__(_opts) do
quote do
use Ecto.Schema

View File

@@ -1,6 +1,7 @@
defmodule TradexWeb.Router do
use TradexWeb, :router
import Oban.Web.Router
import TradexWeb.UserAuth
pipeline :browser do
@@ -40,6 +41,7 @@ defmodule TradexWeb.Router do
scope "/dev" do
pipe_through :browser
oban_dashboard("/oban")
live_dashboard "/dashboard", metrics: TradexWeb.Telemetry
forward "/mailbox", Plug.Swoosh.MailboxPreview
end