Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
71 lines
1.9 KiB
Ruby
71 lines
1.9 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: teams
|
|
#
|
|
# id :bigint not null, primary key
|
|
# allow_auto_assign :boolean default(TRUE)
|
|
# description :text
|
|
# name :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :bigint not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_teams_on_account_id (account_id)
|
|
# index_teams_on_name_and_account_id (name,account_id) UNIQUE
|
|
#
|
|
class Team < ApplicationRecord
|
|
include AccountCacheRevalidator
|
|
|
|
belongs_to :account
|
|
has_many :team_members, dependent: :destroy_async
|
|
has_many :members, through: :team_members, source: :user
|
|
has_many :conversations, dependent: :nullify
|
|
|
|
validates :name,
|
|
presence: { message: I18n.t('errors.validations.presence') },
|
|
uniqueness: { scope: :account_id }
|
|
|
|
before_validation do
|
|
self.name = name.downcase if attribute_present?('name')
|
|
end
|
|
|
|
# Adds multiple members to the team
|
|
# @param user_ids [Array<Integer>] Array of user IDs to add as members
|
|
# @return [Array<User>] Array of newly added members
|
|
def add_members(user_ids)
|
|
team_members_to_create = user_ids.map { |user_id| { user_id: user_id } }
|
|
created_members = team_members.create(team_members_to_create)
|
|
added_users = created_members.filter_map(&:user)
|
|
|
|
update_account_cache
|
|
added_users
|
|
end
|
|
|
|
# Removes multiple members from the team
|
|
# @param user_ids [Array<Integer>] Array of user IDs to remove
|
|
# @return [void]
|
|
def remove_members(user_ids)
|
|
team_members.where(user_id: user_ids).destroy_all
|
|
update_account_cache
|
|
end
|
|
|
|
def messages
|
|
account.messages.where(conversation_id: conversations.pluck(:id))
|
|
end
|
|
|
|
def reporting_events
|
|
account.reporting_events.where(conversation_id: conversations.pluck(:id))
|
|
end
|
|
|
|
def push_event_data
|
|
{
|
|
id: id,
|
|
name: name
|
|
}
|
|
end
|
|
end
|
|
|
|
Team.include_mod_with('Audit::Team')
|