Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
organisation_id != nilたとえば、ハッシュ条件を介してユーザーの CanCan 機能を定義することは可能ですか?
organisation_id != nil
can :crud, User, :organisation_id => ?present?
以下のようなことができます。これにより、null 以外の organization_id を持つユーザーのみが crud を実行できるようになります
can :crud, User.all do |user| user.organization_id.present? end