fix bug with public registration

This commit is contained in:
2023-02-04 09:57:10 -05:00
parent f990fafc6a
commit 1726a1b72e
8 changed files with 26 additions and 22 deletions

View File

@ -11,6 +11,8 @@ config :memex,
ecto_repos: [Memex.Repo],
generators: [binary_id: true]
config :memex, Memex.Accounts, registration: System.get_env("REGISTRATION", "invite")
# Configures the endpoint
config :memex, MemexWeb.Endpoint,
url: [scheme: "https", host: System.get_env("HOST") || "localhost", port: "443"],
@ -18,8 +20,7 @@ config :memex, MemexWeb.Endpoint,
secret_key_base: "KH59P0iZixX5gP/u+zkxxG8vAAj6vgt0YqnwEB5JP5K+E567SsqkCz69uWShjE7I",
render_errors: [view: MemexWeb.ErrorView, accepts: ~w(html json), layout: false],
pubsub_server: Memex.PubSub,
live_view: [signing_salt: "zOLgd3lr"],
registration: System.get_env("REGISTRATION") || "invite"
live_view: [signing_salt: "zOLgd3lr"]
config :memex, Memex.Application, automigrate: false

View File

@ -42,6 +42,8 @@ config :memex, Memex.Repo,
pool_size: String.to_integer(System.get_env("POOL_SIZE", "10")),
socket_options: maybe_ipv6
config :memex, Memex.Accounts, registration: System.get_env("REGISTRATION", "invite")
config :memex, MemexWeb.Endpoint,
url: [scheme: "https", host: host, port: 443],
http: [
@ -50,8 +52,7 @@ config :memex, MemexWeb.Endpoint,
ip: interface,
port: String.to_integer(System.get_env("PORT", "4000"))
],
server: true,
registration: System.get_env("REGISTRATION", "invite")
server: true
if config_env() == :prod do
# The secret key base is used to sign/encrypt cookies and other secrets.