From 9cc3542fa1277b190a006323a77e22bd7474371c Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Wed, 21 Aug 2024 08:05:59 +0000 Subject: Introduce `active?` method to Group via Principal model (#27510). Patch by Go MAEDA (user:maeda). git-svn-id: https://svn.redmine.org/redmine/trunk@22976 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/principal.rb | 4 ++++ app/models/user.rb | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'app/models') diff --git a/app/models/principal.rb b/app/models/principal.rb index 56da6d9c7..6ea19e60d 100644 --- a/app/models/principal.rb +++ b/app/models/principal.rb @@ -136,6 +136,10 @@ class Principal < ApplicationRecord nil end + def active? + self.status == STATUS_ACTIVE + end + def visible?(user=User.current) Principal.visible(user).find_by(:id => id) == self end diff --git a/app/models/user.rb b/app/models/user.rb index 0294e7d21..c3f183fc7 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -273,10 +273,6 @@ class User < Principal end end - def active? - self.status == STATUS_ACTIVE - end - def registered? self.status == STATUS_REGISTERED end -- cgit v1.2.3