Sha256: 223629fbedf3a628b33c18b27bcec45d6fdd6d0eebdb7946427605e436d811d2
Contents?: true
Size: 1.98 KB
Versions: 1
Compression:
Stored size: 1.98 KB
Contents
module PaidUp module Ability include CanCan::Ability def initialize_paid_up(user) features = PaidUp::Feature.all for feature in features case feature.setting_type when 'table_rows' can :index, feature.feature_model can :show, feature.feature_model, enabled: true if user.table_rows_allowed(feature.slug) > 0 || user.table_rows_unlimited?(feature.slug) can :manage, feature.feature_model, :user => user can :own, feature.feature_model if user.table_rows_remaining(feature.slug) > 0 can :new, feature.feature_model else cannot :create, feature.feature_model end else cannot :delete, feature.feature_model cannot :update, feature.feature_model cannot :own, feature.feature_model cannot :create, feature.feature_model end when 'rolify_rows' can :index, feature.feature_model can :show, feature.feature_model, enabled: true if user.rolify_rows_allowed(feature.slug) > 0 || user.rolify_rows_unlimited?(feature.slug) can :manage, feature.feature_model, id: Group.with_role(:owner, user).pluck(:id) can :own, feature.feature_model if user.rolify_rows_remaining(feature.slug) > 0 can :new, feature.feature_model else cannot :create, feature.feature_model end else cannot :delete, feature.feature_model cannot :update, feature.feature_model cannot :own, feature.feature_model cannot :create, feature.feature_model end when 'boolean' if user.plan.feature_setting feature.slug can :use, feature.slug.to_sym end else raise(:unknown_feature_type.l) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
paid_up-0.7.2 | app/models/paid_up/ability.rb |