You've already forked tribes-plugin-trust
40310b26ea
CI / Test (push) Failing after 20s
Introduce the Trust plugin as the federation provider for tribe identity and hello handshakes, with synced Ash resources for remote tribes and tribe relationships plus an admin LiveView for trust management.
22 lines
582 B
Elixir
22 lines
582 B
Elixir
defmodule TribeOne.TribesPlugin.Trust.Application do
|
|
@moduledoc """
|
|
OTP Application for this plugin.
|
|
|
|
Uncomment the `mod:` entry in mix.exs to activate this supervision tree.
|
|
Add plugin-specific GenServers, workers, or supervisors as children here.
|
|
"""
|
|
|
|
use Application
|
|
|
|
@impl true
|
|
def start(_type, _args) do
|
|
children = [
|
|
# Add your supervised processes here, e.g.:
|
|
# {TribeOne.TribesPlugin.Trust.Worker, []}
|
|
]
|
|
|
|
opts = [strategy: :one_for_one, name: TribeOne.TribesPlugin.Trust.Supervisor]
|
|
Supervisor.start_link(children, opts)
|
|
end
|
|
end
|