30 lines
706 B
Ruby
Executable File
30 lines
706 B
Ruby
Executable File
# == Schema Information
|
|
#
|
|
# Table name: macros
|
|
#
|
|
# id :bigint not null, primary key
|
|
# actions :jsonb not null
|
|
# name :string not null
|
|
# visibility :integer default("personal")
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :bigint not null
|
|
# created_by_id :bigint
|
|
# updated_by_id :bigint
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_macros_on_account_id (account_id)
|
|
#
|
|
FactoryBot.define do
|
|
factory :macro do
|
|
account
|
|
name { 'wrong_message_actions' }
|
|
actions do
|
|
[
|
|
{ 'action_name' => 'add_label', 'action_params' => %w[wrong_chat] }
|
|
]
|
|
end
|
|
end
|
|
end
|