Authorization Domain and Role Resource closes #321 #322

Merged
moritz merged 18 commits from feature/321_authorization_domain into main 2026-01-06 19:22:57 +01:00
Showing only changes of commit f63405052f - Show all commits

View file

@ -23,6 +23,7 @@ defmodule Mv.Authorization do
resource Mv.Authorization.Role do resource Mv.Authorization.Role do
define :create_role, action: :create_role define :create_role, action: :create_role
define :list_roles, action: :read define :list_roles, action: :read
define :get_role, action: :read, get_by: [:id]
define :update_role, action: :update_role define :update_role, action: :update_role
define :destroy_role, action: :destroy define :destroy_role, action: :destroy
end end