Add policies for AuthorRole resource.
This commit is contained in:
@@ -3,10 +3,33 @@ defmodule DecentralisedBookIndex.Metadata.AuthorRole do
|
||||
otp_app: :decentralised_book_index,
|
||||
domain: DecentralisedBookIndex.Metadata,
|
||||
data_layer: AshPostgres.DataLayer,
|
||||
extensions: [AshJsonApi.Resource]
|
||||
extensions: [AshJsonApi.Resource],
|
||||
authorizers: [Ash.Policy.Authorizer]
|
||||
|
||||
alias DecentralisedBookIndex.Metadata
|
||||
|
||||
policies do
|
||||
bypass actor_attribute_equals(:role, :admin) do
|
||||
authorize_if always()
|
||||
end
|
||||
|
||||
policy action_type(:read) do
|
||||
authorize_if always()
|
||||
end
|
||||
|
||||
policy action_type(:create) do
|
||||
authorize_if actor_attribute_equals(:role, :moderator)
|
||||
end
|
||||
|
||||
policy action_type(:update) do
|
||||
authorize_if actor_attribute_equals(:role, :moderator)
|
||||
end
|
||||
|
||||
policy action_type(:destroy) do
|
||||
authorize_if actor_attribute_equals(:role, :admin)
|
||||
end
|
||||
end
|
||||
|
||||
json_api do
|
||||
type "author_role"
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user