From 735a12abfc2a0a8d2d848acb763c2b85175c9a0a Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 12 Apr 2025 11:07:02 +0200 Subject: [PATCH] Better name --- app/models/card.rb | 2 +- app/models/card/{draft_commentable.rb => draft_commenting.rb} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename app/models/card/{draft_commentable.rb => draft_commenting.rb} (95%) diff --git a/app/models/card.rb b/app/models/card.rb index 3688ef4e9..a265378ef 100644 --- a/app/models/card.rb +++ b/app/models/card.rb @@ -1,5 +1,5 @@ class Card < ApplicationRecord - include Assignable, Boostable, Colored, DraftCommentable, Engageable, Eventable, Golden, + include Assignable, Boostable, Colored, DraftCommenting, Engageable, Eventable, Golden, Messages, Notifiable, Pinnable, Closeable, Scorable, Searchable, Staged, Statuses, Taggable, Watchable diff --git a/app/models/card/draft_commentable.rb b/app/models/card/draft_commenting.rb similarity index 95% rename from app/models/card/draft_commentable.rb rename to app/models/card/draft_commenting.rb index c0e832e6f..b2fe3a444 100644 --- a/app/models/card/draft_commentable.rb +++ b/app/models/card/draft_commenting.rb @@ -1,4 +1,4 @@ -module Card::DraftCommentable +module Card::DraftCommenting extend ActiveSupport::Concern included do