feat: Macros CRUD api (#5047)

This commit is contained in:
Tejaswini Chile
2022-07-19 17:37:00 +05:30
committed by GitHub
parent c4b2005425
commit 0cee42a9f9
17 changed files with 460 additions and 2 deletions

View File

@@ -40,7 +40,8 @@ class Account < ApplicationRecord
has_many :agent_bots, dependent: :destroy_async
has_many :api_channels, dependent: :destroy_async, class_name: '::Channel::Api'
has_many :articles, dependent: :destroy_async, class_name: '::Article'
has_many :automation_rules, dependent: :destroy
has_many :automation_rules, dependent: :destroy_async
has_many :macros, dependent: :destroy_async
has_many :campaigns, dependent: :destroy_async
has_many :canned_responses, dependent: :destroy_async
has_many :categories, dependent: :destroy_async, class_name: '::Category'

49
app/models/macro.rb Normal file
View File

@@ -0,0 +1,49 @@
# == Schema Information
#
# Table name: macros
#
# id :bigint not null, primary key
# actions :jsonb not null
# name :string not null
# visibility :integer default("user")
# created_at :datetime not null
# updated_at :datetime not null
# account_id :bigint not null
# created_by_id :bigint not null
# updated_by_id :bigint not null
#
# Indexes
#
# index_macros_on_account_id (account_id)
# index_macros_on_created_by_id (created_by_id)
# index_macros_on_updated_by_id (updated_by_id)
#
# Foreign Keys
#
# fk_rails_... (created_by_id => users.id)
# fk_rails_... (updated_by_id => users.id)
#
class Macro < ApplicationRecord
belongs_to :account
belongs_to :created_by,
class_name: :User
belongs_to :updated_by,
class_name: :User
enum visibility: { personal: 0, global: 1 }
def set_visibility(user, params)
self.visibility = params[:visibility]
self.visibility = :personal if user.agent?
end
def self.with_visibility(user, params)
records = user.administrator? ? Current.account.macros : Current.account.macros.global
records = records.or(personal.where(created_by_id: user.id)) if user.agent?
records.page(current_page(params))
records
end
def self.current_page(params)
params[:page] || 1
end
end

View File

@@ -100,6 +100,7 @@ class User < ApplicationRecord
class_name: :Portal,
dependent: :nullify,
source: :portal
has_many :macros, foreign_key: 'created_by_id', dependent: :destroy_async
before_validation :set_password_and_uid, on: :create