Packages
boruta
2.1.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/boruta/migrations/20211010220831_clients_public_revoke.ex
defmodule Boruta.Migrations.ClientsPublicRevoke do
@moduledoc false
defmacro __using__(_args) do
quote do
def change do
# 20210926200753_add_public_revoke_to_clients.exs
alter table(:oauth_clients) do
add(:public_revoke, :boolean, null: false, default: false)
end
# 20210926205845_add_revoke_and_introspect_to_clients_supported_grant_types.exs
execute("""
ALTER TABLE oauth_clients
ALTER COLUMN supported_grant_types TYPE varchar(255)[]
USING (supported_grant_types || ARRAY['revoke'::varchar(255), 'introspect'::varchar(255)])
""")
execute("""
ALTER TABLE oauth_clients
ALTER COLUMN supported_grant_types
SET DEFAULT ARRAY['client_credentials', 'password', 'authorization_code', 'refresh_token', 'implicit', 'revoke', 'introspect']
""")
end
end
end
end