We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e460663 commit c264878Copy full SHA for c264878
apps/authorizer/lib/authorizer.ex
@@ -2,4 +2,9 @@ defmodule Authorizer do
2
@moduledoc """
3
Application to deal with request's to authorization server.
4
"""
5
+
6
+ alias Authorizer.Rules.Commands.AdminAccess
7
8
+ @doc "Delegates to #{AdminAccess}.execute/1"
9
+ defdelegate authorize_admin(conn), to: AdminAccess, as: :execute
10
end
0 commit comments