Packages
boruta
3.0.0-beta.4
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/boruta/migrations/20241221231456_agent_credentials.ex
defmodule Boruta.Migrations.AgentCredentials do
@moduledoc false
import Boruta.Config, only: [agent_token_max_ttl: 0]
defmacro __using__(_args) do
quote do
def change do
# 20241221205452_add_bind_data_to_oauth_tokens.exs
alter table(:oauth_clients) do
add :agent_token_ttl, :integer, null: false, default: agent_token_max_ttl()
end
alter table(:oauth_tokens) do
add :bind_data, :jsonb
add :bind_configuration, :jsonb
end
# 20241221232600_add_agent_token_to_oauth_tokens.exs
alter table(:oauth_tokens) do
add :agent_token, :string
end
end
end
end
end