Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add check_user_permissions method to SOULs gem #213

Closed
POPPIN-FUMI opened this issue Dec 21, 2021 · 0 comments
Closed

add check_user_permissions method to SOULs gem #213

POPPIN-FUMI opened this issue Dec 21, 2021 · 0 comments
Labels
enhancement New feature or request

Comments

@POPPIN-FUMI
Copy link
Contributor

def check_user_permissions(user, obj, method)
  raise(StandardError, "Invalid or Missing Token") unless user

  policy_class = obj.class.name + "Policy"
  policy_clazz = policy_class.constantize.new(user, obj)
  permission = policy_clazz.public_send(method)
  raise(Pundit::NotAuthorizedError, "permission error!") unless permission
end
@POPPIN-FUMI POPPIN-FUMI added the enhancement New feature or request label Dec 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant