mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
DEV: Set limits for text fields on BadgeGrouping
This commit is contained in:
parent
1106e4ad09
commit
b81c13280a
|
@ -9,6 +9,9 @@ class BadgeGrouping < ActiveRecord::Base
|
|||
|
||||
has_many :badges
|
||||
|
||||
validates :name, length: { maximum: 100 }
|
||||
validates :description, length: { maximum: 500 }
|
||||
|
||||
def system?
|
||||
id && id <= 5
|
||||
end
|
||||
|
|
8
spec/models/badge_grouping_spec.rb
Normal file
8
spec/models/badge_grouping_spec.rb
Normal file
|
@ -0,0 +1,8 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "rails_helper"
|
||||
|
||||
RSpec.describe BadgeGrouping, type: :model do
|
||||
it { is_expected.to validate_length_of(:name).is_at_most(100) }
|
||||
it { is_expected.to validate_length_of(:description).is_at_most(500) }
|
||||
end
|
Loading…
Reference in New Issue
Block a user