Packages
boruta
1.0.0-rc.0
3.0.0-beta.4
3.0.0-beta.3
3.0.0-beta.2
3.0.0-beta.1
2.3.6
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.2
2.2.1
2.2.0
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
2.0.0-rc.1
2.0.0-rc.0
1.2.1
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
1.0.0-rc.0
0.2.1
0.2.0
0.1.1
0.1.0
0.1.0-rc.5
0.1.0-rc.4
0.1.0-rc.3
0.1.0-rc.2
0.1.0-rc.1
Core of an OAuth/OpenID Connect provider enabling authorization in your applications.
Current section
Files
Jump to
Current section
Files
priv/repo/seeds.exs
import Ecto.Changeset
{:ok, scopes_scope} = Boruta.Repo.insert(%Boruta.Ecto.Scope{
name: "scopes:manage:all"
})
{:ok, clients_scope} = Boruta.Repo.insert(%Boruta.Ecto.Scope{
name: "clients:manage:all"
})
{:ok, users_scope} = Boruta.Repo.insert(%Boruta.Ecto.Scope{
name: "users:manage:all"
})
%Boruta.Ecto.Client{}
|> cast(%{
id: "6a2f41a3-c54c-fce8-32d2-0324e1c32e20",
secret: "777",
redirect_uris: ["https://boruta.herokuapp.com/admin/oauth-callback"],
authorize_scope: false
}, [:id, :secret, :redirect_uris, :authorize_scope])
|> Boruta.Repo.insert()