Skip to content

Commit

Permalink
Make everything free pre-shutdown
Browse files Browse the repository at this point in the history
  • Loading branch information
glacials committed Oct 9, 2024
1 parent e8c889e commit 4494a02
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions app/models/user.rb
Original file line number Diff line number Diff line change
Expand Up @@ -121,39 +121,39 @@ def feature_grantors
end

def has_predictions?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def has_redirectors?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def has_advanced_comparisons?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def has_sum_of_best_leaderboards?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def has_hiding?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def has_advanced_video?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def has_autohighlight?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def has_advanced_analytics?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def has_srdc_submit?
feature_grantors.any?(&__method__)
feature_grantors.any?(&__method__) || true # Adding `|| true` to make things free pre-shutdown.
end

def admin?
Expand Down

0 comments on commit 4494a02

Please sign in to comment.