You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
328 B
17 lines
328 B
# frozen_string_literal: true |
|
|
|
module FollowLimitable |
|
extend ActiveSupport::Concern |
|
|
|
included do |
|
validates_with FollowLimitValidator, on: :create, unless: :bypass_follow_limit? |
|
end |
|
|
|
def bypass_follow_limit=(value) |
|
@bypass_follow_limit = value |
|
end |
|
|
|
def bypass_follow_limit? |
|
@bypass_follow_limit |
|
end |
|
end
|
|
|