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>
44 lines
1.9 KiB
Ruby
44 lines
1.9 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: csat_survey_responses
|
|
#
|
|
# id :bigint not null, primary key
|
|
# feedback_message :text
|
|
# rating :integer not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :bigint not null
|
|
# assigned_agent_id :bigint
|
|
# contact_id :bigint not null
|
|
# conversation_id :bigint not null
|
|
# message_id :bigint not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_csat_survey_responses_on_account_id (account_id)
|
|
# index_csat_survey_responses_on_assigned_agent_id (assigned_agent_id)
|
|
# index_csat_survey_responses_on_contact_id (contact_id)
|
|
# index_csat_survey_responses_on_conversation_id (conversation_id)
|
|
# index_csat_survey_responses_on_message_id (message_id) UNIQUE
|
|
#
|
|
class CsatSurveyResponse < ApplicationRecord
|
|
belongs_to :account
|
|
belongs_to :conversation
|
|
belongs_to :contact
|
|
belongs_to :message
|
|
belongs_to :assigned_agent, class_name: 'User', optional: true, inverse_of: :csat_survey_responses
|
|
belongs_to :review_notes_updated_by, class_name: 'User', optional: true
|
|
|
|
validates :rating, presence: true, inclusion: { in: [1, 2, 3, 4, 5] }
|
|
validates :account_id, presence: true
|
|
validates :contact_id, presence: true
|
|
validates :conversation_id, presence: true
|
|
|
|
scope :filter_by_created_at, ->(range) { where(created_at: range) if range.present? }
|
|
scope :filter_by_assigned_agent_id, ->(user_ids) { where(assigned_agent_id: user_ids) if user_ids.present? }
|
|
scope :filter_by_inbox_id, ->(inbox_id) { joins(:conversation).where(conversations: { inbox_id: inbox_id }) if inbox_id.present? }
|
|
scope :filter_by_team_id, ->(team_id) { joins(:conversation).where(conversations: { team_id: team_id }) if team_id.present? }
|
|
# filter by rating value
|
|
scope :filter_by_rating, ->(rating) { where(rating: rating) if rating.present? }
|
|
end
|