Feature: Slack integration (#783)

- Integrations architecture
- Slack integration
This commit is contained in:
Subin T P
2020-06-12 23:12:47 +05:30
committed by GitHub
parent 4f3b483066
commit ed1c871633
44 changed files with 867 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
class CreateIntegrationsHooks < ActiveRecord::Migration[6.0]
def change
create_table :integrations_hooks do |t|
t.integer :status, default: 0
t.integer :inbox_id
t.integer :account_id
t.string :app_id
t.text :settings
t.integer :hook_type, default: 0
t.string :reference_id
t.string :access_token
t.timestamps
end
end
end

View File

@@ -0,0 +1,5 @@
class AddReferenceIdToConversation < ActiveRecord::Migration[6.0]
def change
add_column :conversations, :reference_id, :string
end
end

View File

@@ -0,0 +1,5 @@
class RenameReferenceId < ActiveRecord::Migration[6.0]
def change
rename_column :conversations, :reference_id, :identifier
end
end