Skip to content

Commit

Permalink
Update app/policies/user_policy.rb
Browse files Browse the repository at this point in the history
fixed inconsistent order
  • Loading branch information
lodewiges authored Dec 13, 2024
1 parent 9363de0 commit c9180ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/policies/user_policy.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class UserPolicy < ApplicationPolicy
def index?
user&.treasurer? || user&.main_bartender? || user&.renting_manager?
user&.treasurer? || user&.renting_manager? || user&.main_bartender?
end

def refresh_user_list?
Expand Down

0 comments on commit c9180ea

Please sign in to comment.