From 18c2746bf3ff69db9b596b8aa6e563e224f74245 Mon Sep 17 00:00:00 2001 From: Kabiru Mwenja Date: Tue, 17 Dec 2024 17:18:49 +0300 Subject: [PATCH] [#60134] 80 chars as the max length for reminder notes seems too short https://community.openproject.org/work_packages/60134 --- app/contracts/reminders/base_contract.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/contracts/reminders/base_contract.rb b/app/contracts/reminders/base_contract.rb index 738d0c8f2732..545d72d59f82 100644 --- a/app/contracts/reminders/base_contract.rb +++ b/app/contracts/reminders/base_contract.rb @@ -28,7 +28,7 @@ module Reminders class BaseContract < ::ModelContract - MAX_NOTE_CHARS_LENGTH = 80 + MAX_NOTE_CHARS_LENGTH = 128 attribute :creator_id attribute :remindable_id