题库接口调整

sso
cxt 5 years ago
parent 2c9dd314e9
commit 215b9fa4b5

@ -1,3 +1,4 @@
class ItemAnalysis < ApplicationRecord
belongs_to :item_bank, touch: true
validates :analysis, length: { maximum: 5000, too_long: "不能超过5000个字符" }
end

@ -14,7 +14,6 @@ class ItemBank < ApplicationRecord
belongs_to :container, polymorphic: true, optional: true
validates :name, presence: true, length: { maximum: 1000, too_long: "不能超过1000个字符" }
validates :analysis, length: { maximum: 5000, too_long: "不能超过5000个字符" }
def analysis
item_analysis&.analysis

Loading…
Cancel
Save