frenzy/lib/frenzy.ex

18 lines
409 B
Elixir
Raw Permalink Normal View History

2019-02-11 22:22:35 +00:00
defmodule Frenzy do
@moduledoc """
Frenzy keeps the contexts that define your domain
and business logic.
Contexts are also responsible for managing your data, regardless
if it comes from the database, an external API or others.
"""
2021-09-22 17:59:44 +00:00
def sentry_enabled? do
Application.get_env(:frenzy, :sentry_enabled)
end
2023-06-25 22:19:11 +00:00
def oidc_enabled? do
Application.get_env(:frenzy, :oidc_enabled)
end
2019-02-11 22:22:35 +00:00
end