### Steps to reproduce I have a resource for which I would want to have different rules for `#new` and `#create`. But when I do: ```rb can :new, Foo # renders a form cannot :create, Foo { |foo| <some condition on foo> } # some options for foo may not be authorized ``` Since `create` is an alias for `new` and `create` I can't have seperate rules for `create` only without affecting `new` Can I opt-out of aliasing somehow? ### Expected behavior N/A ### Actual behavior N/A ### System configuration **Rails version**: 6.1.7 **Ruby version**: 3.2.0 **CanCanCan version**: 3.5.0