From 571df6e837c39b0634fe80bbc7370a01f0fb7282 Mon Sep 17 00:00:00 2001 From: Kabiru Mwenja Date: Thu, 19 Dec 2024 15:25:18 +0300 Subject: [PATCH] openpoint/60134 Increase reminder notes chars length from 80 to 128 (#17479) 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