This commit is contained in:
Mayel de Borniol 2023-03-05 17:11:04 +13:00
parent 886508e976
commit e80b066cab
2 changed files with 12 additions and 1 deletions

View file

@ -58,4 +58,7 @@ Conceptually, an ACL contains a grant for every user-or-circle/verb combination,
## Controlled - Applying boundaries to an object
An object is linked to one or more `ACL`s by the `Controlled` multimixin, which pairs an object ID with an ACL ID. Because it is a multimixin, a given object can have multiple ACLs applied. In the case of overlap, permissions are combined in the manner described earlier.
An object is linked to one or more `ACL`s by the `Controlled` multimixin, which pairs an object ID with an ACL ID. Because it is a multimixin, a given object can have multiple ACLs applied. In the case of overlap, permissions are combined in the manner described earlier.
See also https://doc.bonfirenetworks.org/extension-bonfire_data_access_control.html for more docs (TODO: merge/deduplicate)

View file

@ -0,0 +1,8 @@
defmodule Bonfire.Boundaries.Repo.Migrations.BoundariesFixtures do
@moduledoc false
use Ecto.Migration
import Bonfire.Boundaries.Fixtures
def up, do: Bonfire.Boundaries.Fixtures.insert()
end