Fix list creation limit check (#32869)
This commit is contained in:
parent
95d7120ce6
commit
8f5cbf5370
2 changed files with 6 additions and 2 deletions
|
@ -34,7 +34,7 @@ class List < ApplicationRecord
|
|||
private
|
||||
|
||||
def validate_account_lists_limit
|
||||
errors.add(:base, I18n.t('lists.errors.limit')) if account.lists.count >= PER_ACCOUNT_LIMIT
|
||||
errors.add(:base, I18n.t('lists.errors.limit')) if account.owned_lists.count >= PER_ACCOUNT_LIMIT
|
||||
end
|
||||
|
||||
def clean_feed_manager
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue