0
我使用devise_invitable邀請用戶,並cancancan定義應用程序中的功能。如何定義誰可以發送邀請?如何限制誰可以邀請用戶devise_invitable和cancancan
我使用devise_invitable邀請用戶,並cancancan定義應用程序中的功能。如何定義誰可以發送邀請?如何限制誰可以邀請用戶devise_invitable和cancancan
# app/controllers/invitations_controller.rb
class Devise::InvitationsController < DeviseController
...
before_action :is_admin?, :only => [:new, :create]
...
private
def is_admin?
current_user.role == 'admin'
end
end