├── .codeclimate.yml
├── .devcontainer
└── devcontainer.json
├── .docker-files
├── deps.sh
├── node.sh
└── pg.sh
├── .dockerdev
├── .bashrc
├── .psqlrc
└── Aptfile
├── .dockerignore
├── .env.example
├── .eslintignore
├── .eslintrc.js
├── .github
├── .stale.yml
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ ├── config.yml
│ └── feature_request.md
└── workflows
│ ├── anchore-analysis.yml
│ ├── docker-image-ghcr.yml
│ ├── dockerimage.yml
│ ├── rubocop-analysis.yml
│ └── ruby.yml
├── .gitignore
├── .husky
└── pre-commit
├── .prettierignore
├── .rspec
├── .rubocop.yml
├── .rubocop_todo.yml
├── .ruby-version
├── .unimportedrc.json
├── CODE_OF_CONDUCT.md
├── Dockerfile
├── Dockerfile.development
├── Gemfile
├── Gemfile.lock
├── LICENSE.txt
├── Procfile
├── Procfile.dev
├── Procfile.test
├── README.md
├── Rakefile
├── SECURITY.md
├── app.json
├── app
├── assets
│ ├── builds
│ │ └── .keep
│ ├── config
│ │ └── manifest.js
│ ├── images
│ │ ├── .keep
│ │ ├── delivery-icon8.png
│ │ ├── empty-icon8.png
│ │ ├── favicon.png
│ │ ├── icons8-bot-50.png
│ │ ├── logo.png
│ │ ├── notfound-icon8.png
│ │ ├── track.gif
│ │ ├── up-icon8.png
│ │ └── welcome-icon8.png
│ ├── javascripts
│ │ └── channels
│ │ │ └── .keep
│ └── stylesheets
│ │ ├── application.tailwind.css
│ │ ├── inter.scss
│ │ └── sessions.css
├── channels
│ ├── agent_channel.rb
│ ├── application_cable
│ │ ├── channel.rb
│ │ └── connection.rb
│ ├── events_channel.rb
│ ├── messenger_events_channel.rb
│ ├── presence_channel.rb
│ └── rtc_channel.rb
├── controllers
│ ├── agents
│ │ ├── auth0_controller.rb
│ │ ├── invitations_controller.rb
│ │ ├── omniauth_callbacks_controller.rb
│ │ ├── passwords_controller.rb
│ │ ├── registrations_controller.rb
│ │ ├── sessions_controller.rb
│ │ └── tokens_controller.rb
│ ├── api
│ │ ├── graphql_controller.rb
│ │ └── v1
│ │ │ ├── credentials_controller.rb
│ │ │ ├── direct_uploads_controller.rb
│ │ │ ├── hooks
│ │ │ └── provider_controller.rb
│ │ │ ├── hooks_controller.rb
│ │ │ └── subscriptions
│ │ │ ├── paddle_hooks_controller.rb
│ │ │ └── stripe_hooks_controller.rb
│ ├── api_controller.rb
│ ├── application_controller.rb
│ ├── articles_controller.rb
│ ├── client_tester_controller.rb
│ ├── concerns
│ │ ├── .keep
│ │ ├── cors_headers.rb
│ │ ├── hash_ensurer.rb
│ │ ├── package_iframe_behavior.rb
│ │ └── trackeable.rb
│ ├── graphql_controller.rb
│ ├── home_controller.rb
│ ├── oembed_controller.rb
│ └── widgets_controller.rb
├── graphql
│ ├── chaskiq_schema.rb
│ ├── helpers
│ │ └── authorizator.rb
│ ├── mutations
│ │ ├── .keep
│ │ ├── agents
│ │ │ ├── destroy_agent_role.rb
│ │ │ ├── invite.rb
│ │ │ ├── update_agent.rb
│ │ │ └── update_agent_role.rb
│ │ ├── app_package_integrations
│ │ │ ├── create_integration.rb
│ │ │ ├── delete_integration.rb
│ │ │ └── update_integration.rb
│ │ ├── app_packages
│ │ │ ├── create_package.rb
│ │ │ ├── delete_package.rb
│ │ │ └── update_package.rb
│ │ ├── app_users
│ │ │ ├── convert_user.rb
│ │ │ ├── create_app_user.rb
│ │ │ ├── create_external_profile.rb
│ │ │ ├── delete_external_profile.rb
│ │ │ ├── merge_contact.rb
│ │ │ ├── privacy_consent.rb
│ │ │ ├── sync_external_profile.rb
│ │ │ ├── update_app_user.rb
│ │ │ ├── update_app_user_state.rb
│ │ │ └── update_external_profile.rb
│ │ ├── apps
│ │ │ ├── create_app.rb
│ │ │ ├── destroy_app.rb
│ │ │ ├── import_contacts.rb
│ │ │ └── update_app.rb
│ │ ├── articles
│ │ │ ├── add_articles_to_collection.rb
│ │ │ ├── article_blob_attach.rb
│ │ │ ├── article_settings_delete_lang.rb
│ │ │ ├── article_settings_update.rb
│ │ │ ├── assign_author.rb
│ │ │ ├── change_collection_article.rb
│ │ │ ├── collections
│ │ │ │ ├── create_collection.rb
│ │ │ │ ├── delete_collection.rb
│ │ │ │ ├── edit_collection.rb
│ │ │ │ └── reorder_collection.rb
│ │ │ ├── create_article.rb
│ │ │ ├── delete_article.rb
│ │ │ ├── edit_article.rb
│ │ │ ├── reorder_article.rb
│ │ │ ├── sections
│ │ │ │ ├── create_section.rb
│ │ │ │ ├── delete_section.rb
│ │ │ │ └── edit_section.rb
│ │ │ └── toggle_article.rb
│ │ ├── assign_rule
│ │ │ ├── create_assign_rule.rb
│ │ │ ├── delete_assign_rule.rb
│ │ │ ├── edit_assign_rule.rb
│ │ │ └── update_rule_priorities.rb
│ │ ├── base_mutation.rb
│ │ ├── bots
│ │ │ ├── create_bot_task.rb
│ │ │ ├── delete_bot_task.rb
│ │ │ ├── reorder_bot_task.rb
│ │ │ └── update_bot_task.rb
│ │ ├── campaigns
│ │ │ ├── create_campaign.rb
│ │ │ ├── delete_campaign.rb
│ │ │ ├── deliver_campaign.rb
│ │ │ ├── new_campaign.rb
│ │ │ ├── purge_metrics.rb
│ │ │ └── update_campaign.rb
│ │ ├── clone_message.rb
│ │ ├── conversations
│ │ │ ├── assign_user.rb
│ │ │ ├── insert_app_block_comment.rb
│ │ │ ├── insert_comment.rb
│ │ │ ├── insert_note.rb
│ │ │ ├── send_trigger.rb
│ │ │ ├── sort_agent_list.rb
│ │ │ ├── start_conversation.rb
│ │ │ ├── toggle_priority.rb
│ │ │ ├── typing_notifier.rb
│ │ │ ├── update_state.rb
│ │ │ └── update_tags.rb
│ │ ├── create_direct_upload.rb
│ │ ├── create_url_upload.rb
│ │ ├── messenger
│ │ │ ├── auth.rb
│ │ │ └── create_comment.rb
│ │ ├── oauth_apps
│ │ │ ├── oauth_create.rb
│ │ │ ├── oauth_delete.rb
│ │ │ └── oauth_update.rb
│ │ ├── outgoing_webhooks
│ │ │ ├── create_webhook.rb
│ │ │ ├── delete_webhook.rb
│ │ │ └── update_webhook.rb
│ │ ├── predicates
│ │ │ ├── create_predicate.rb
│ │ │ ├── delete_predicate.rb
│ │ │ ├── save_predicate.rb
│ │ │ └── search_predicate.rb
│ │ ├── quick_replies
│ │ │ ├── create_quick_reply.rb
│ │ │ ├── delete_quick_reply.rb
│ │ │ └── update_quick_reply.rb
│ │ ├── stripe_subscriptions
│ │ │ ├── create_intent.rb
│ │ │ └── customer_portal.rb
│ │ └── teams
│ │ │ ├── add_team_agent.rb
│ │ │ ├── create_team.rb
│ │ │ ├── delete_team.rb
│ │ │ ├── delete_team_agent.rb
│ │ │ └── update_team.rb
│ └── types
│ │ ├── .keep
│ │ ├── agent_type.rb
│ │ ├── any_type.rb
│ │ ├── app_package_integration_type.rb
│ │ ├── app_package_type.rb
│ │ ├── app_params_type.rb
│ │ ├── app_type.rb
│ │ ├── app_user_type.rb
│ │ ├── article_settings_type.rb
│ │ ├── article_type.rb
│ │ ├── article_url_type.rb
│ │ ├── assignment_rule_type.rb
│ │ ├── author_type.rb
│ │ ├── base_enum.rb
│ │ ├── base_input_object.rb
│ │ ├── base_interface.rb
│ │ ├── base_object.rb
│ │ ├── base_scalar.rb
│ │ ├── base_union.rb
│ │ ├── bot_path_type.rb
│ │ ├── bot_task_filter_type.rb
│ │ ├── bot_task_type.rb
│ │ ├── campaign_params_type.rb
│ │ ├── campaign_type.rb
│ │ ├── collection_type.rb
│ │ ├── conversation_message_input_type.rb
│ │ ├── conversation_part_content_type.rb
│ │ ├── conversation_part_type.rb
│ │ ├── conversation_type.rb
│ │ ├── external_profile_type.rb
│ │ ├── json_type.rb
│ │ ├── message_input_type.rb
│ │ ├── messenger_type.rb
│ │ ├── metric_type.rb
│ │ ├── mutation_type.rb
│ │ ├── oauth_application_type.rb
│ │ ├── paginated_agent_teams_type.rb
│ │ ├── paginated_app_users_type.rb
│ │ ├── paginated_articles_type.rb
│ │ ├── paginated_bot_tasks_type.rb
│ │ ├── paginated_campaign_type.rb
│ │ ├── paginated_conversation_parts_type.rb
│ │ ├── paginated_conversations_type.rb
│ │ ├── paginated_metrics_type.rb
│ │ ├── paginated_public_conversations_type.rb
│ │ ├── paginated_results_type.rb
│ │ ├── paginated_teams_type.rb
│ │ ├── paginated_visits_type.rb
│ │ ├── predicate_type.rb
│ │ ├── public_app_type.rb
│ │ ├── public_conversation_type.rb
│ │ ├── query_type.rb
│ │ ├── quick_reply_type.rb
│ │ ├── role_type.rb
│ │ ├── section_type.rb
│ │ ├── segment_type.rb
│ │ ├── team_type.rb
│ │ ├── user_type.rb
│ │ └── visit_type.rb
├── helpers
│ ├── application_helper.rb
│ └── sanitize_helpers.rb
├── identities
│ └── app_identity.rb
├── importers
│ └── list_importer.rb
├── javascript
│ ├── application.js
│ ├── article.js
│ ├── docs.js
│ ├── docs
│ │ └── readme.md
│ ├── embed.js
│ ├── locales.js
│ ├── packages
│ │ ├── components
│ │ │ ├── README.md
│ │ │ ├── __tests__
│ │ │ │ └── components.test.js
│ │ │ ├── package.json
│ │ │ └── src
│ │ │ │ ├── components
│ │ │ │ ├── AccessDenied.tsx
│ │ │ │ ├── Accordeon.tsx
│ │ │ │ ├── Alert.tsx
│ │ │ │ ├── Avatar.tsx
│ │ │ │ ├── Badge.tsx
│ │ │ │ ├── Breadcrumbs.tsx
│ │ │ │ ├── BrowserSimulator.tsx
│ │ │ │ ├── Button.tsx
│ │ │ │ ├── ButtonTabSwitch.tsx
│ │ │ │ ├── Card.tsx
│ │ │ │ ├── ContactManager.tsx
│ │ │ │ ├── Content.tsx
│ │ │ │ ├── DeleteDialog.tsx
│ │ │ │ ├── Dropdown.tsx
│ │ │ │ ├── EmptyView.tsx
│ │ │ │ ├── ErrorBoundary.tsx
│ │ │ │ ├── FilterMenu.tsx
│ │ │ │ ├── FormDialog.tsx
│ │ │ │ ├── Hints.tsx
│ │ │ │ ├── ImageZoomOverlay.tsx
│ │ │ │ ├── InplaceInputEditor.tsx
│ │ │ │ ├── LangChooser.tsx
│ │ │ │ ├── List.tsx
│ │ │ │ ├── PageHeader.tsx
│ │ │ │ ├── Panel.tsx
│ │ │ │ ├── Progress.tsx
│ │ │ │ ├── RouterLink.tsx
│ │ │ │ ├── SearchInput.tsx
│ │ │ │ ├── Switch.tsx
│ │ │ │ ├── Table
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── userFormat.tsx
│ │ │ │ ├── Tabs.tsx
│ │ │ │ ├── TagDialog.tsx
│ │ │ │ ├── Tour.tsx
│ │ │ │ ├── UserData.tsx
│ │ │ │ ├── UserProfileCard.tsx
│ │ │ │ ├── UserSlide.tsx
│ │ │ │ ├── charts
│ │ │ │ │ ├── charts.tsx
│ │ │ │ │ ├── count.tsx
│ │ │ │ │ ├── heatMap.tsx
│ │ │ │ │ └── pie.tsx
│ │ │ │ ├── connectivity.tsx
│ │ │ │ ├── danteEditor
│ │ │ │ │ ├── appPackage.tsx
│ │ │ │ │ ├── audioRecorder.tsx
│ │ │ │ │ ├── container.tsx
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ ├── onDemandTriggers.tsx
│ │ │ │ │ ├── quickReplies.tsx
│ │ │ │ │ └── renderer.tsx
│ │ │ │ ├── dashboard
│ │ │ │ │ └── card.tsx
│ │ │ │ ├── fileUploader.tsx
│ │ │ │ ├── forms
│ │ │ │ │ ├── ColorPicker.tsx
│ │ │ │ │ ├── FieldRenderer.tsx
│ │ │ │ │ ├── Input.tsx
│ │ │ │ │ └── Toggle.tsx
│ │ │ │ ├── hooks
│ │ │ │ │ ├── useAutoLogout.js
│ │ │ │ │ ├── useClickOutside.ts
│ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ ├── useDebounce.ts
│ │ │ │ │ ├── useLocalStorage.ts
│ │ │ │ │ ├── useMedia.ts
│ │ │ │ │ ├── usePortal.ts
│ │ │ │ │ ├── useScript.ts
│ │ │ │ │ └── useTabActivity.ts
│ │ │ │ ├── icons.tsx
│ │ │ │ ├── jsonDebug.tsx
│ │ │ │ ├── loadingView.tsx
│ │ │ │ ├── map
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── notifications
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── packageBlocks
│ │ │ │ │ ├── AppList.tsx
│ │ │ │ │ ├── Button.tsx
│ │ │ │ │ ├── CheckboxGroup.tsx
│ │ │ │ │ ├── DataTable.tsx
│ │ │ │ │ ├── DropDown.tsx
│ │ │ │ │ ├── Image.tsx
│ │ │ │ │ ├── InserterForm.tsx
│ │ │ │ │ ├── List.tsx
│ │ │ │ │ ├── Serapator.tsx
│ │ │ │ │ ├── SingleSelect.tsx
│ │ │ │ │ ├── Spacer.tsx
│ │ │ │ │ ├── Text.tsx
│ │ │ │ │ ├── TextArea.tsx
│ │ │ │ │ ├── TextInput.tsx
│ │ │ │ │ ├── baseInserter.tsx
│ │ │ │ │ ├── components.tsx
│ │ │ │ │ ├── shared.tsx
│ │ │ │ │ ├── styled.js
│ │ │ │ │ ├── styles.js
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── rtc.tsx
│ │ │ │ ├── rtcView.tsx
│ │ │ │ ├── scrollingTabs.tsx
│ │ │ │ ├── segmentManager
│ │ │ │ │ ├── container.tsx
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ ├── itemButton.tsx
│ │ │ │ │ └── types.ts
│ │ │ │ ├── stats.tsx
│ │ │ │ ├── textEditor
│ │ │ │ │ ├── darkTheme.ts
│ │ │ │ │ ├── editorStyles.tsx
│ │ │ │ │ └── theme.ts
│ │ │ │ ├── upgradeButton.tsx
│ │ │ │ └── webSetup.tsx
│ │ │ │ ├── favicon.png
│ │ │ │ ├── index.js
│ │ │ │ └── utils
│ │ │ │ ├── caseConverter.ts
│ │ │ │ ├── defaultFields.ts
│ │ │ │ └── htmlSanitize.ts
│ │ ├── docs
│ │ │ ├── README.md
│ │ │ ├── __tests__
│ │ │ │ └── docs.test.js
│ │ │ ├── package.json
│ │ │ └── src
│ │ │ │ ├── index.tsx
│ │ │ │ └── site
│ │ │ │ ├── Dropdown.tsx
│ │ │ │ ├── article.tsx
│ │ │ │ ├── breadcrums.tsx
│ │ │ │ ├── collectionSections.tsx
│ │ │ │ ├── collections.tsx
│ │ │ │ ├── docs.tsx
│ │ │ │ ├── icons.tsx
│ │ │ │ ├── index.tsx
│ │ │ │ ├── searchBar.tsx
│ │ │ │ └── translation.tsx
│ │ ├── messenger
│ │ │ ├── README.md
│ │ │ ├── __tests__
│ │ │ │ └── messenger.test.js
│ │ │ ├── package.json
│ │ │ └── src
│ │ │ │ ├── client_messenger
│ │ │ │ ├── Banner.tsx
│ │ │ │ ├── UserTour.tsx
│ │ │ │ ├── activityUtils.js
│ │ │ │ ├── articles.tsx
│ │ │ │ ├── autolink.tsx
│ │ │ │ ├── consentView.tsx
│ │ │ │ ├── context.tsx
│ │ │ │ ├── conversations
│ │ │ │ │ ├── appPackageBlock.tsx
│ │ │ │ │ ├── commentItem.tsx
│ │ │ │ │ ├── conversation.tsx
│ │ │ │ │ ├── conversations.tsx
│ │ │ │ │ ├── messageItemWrapper.tsx
│ │ │ │ │ └── newConversationBlock.tsx
│ │ │ │ ├── cookies.ts
│ │ │ │ ├── frameBridge.tsx
│ │ │ │ ├── frameChild.tsx
│ │ │ │ ├── giphy.tsx
│ │ │ │ ├── graphql
│ │ │ │ │ ├── client.ts
│ │ │ │ │ ├── queries.ts
│ │ │ │ │ └── testEntry.ts
│ │ │ │ ├── homePanel.tsx
│ │ │ │ ├── html2Content.tsx
│ │ │ │ ├── icons
│ │ │ │ │ ├── Poweredby_100px-White_VertText.png
│ │ │ │ │ ├── chat.svg
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── icons8-bot-50.png
│ │ │ │ ├── loader.tsx
│ │ │ │ ├── messageContainer.tsx
│ │ │ │ ├── messageFrame.tsx
│ │ │ │ ├── messageWindow.tsx
│ │ │ │ ├── messenger.tsx
│ │ │ │ ├── messengerEncrypted.tsx
│ │ │ │ ├── packageFrame.tsx
│ │ │ │ ├── rtcView.tsx
│ │ │ │ ├── shared
│ │ │ │ │ ├── absintheSubscription.ts
│ │ │ │ │ ├── actionCableSubscription.ts
│ │ │ │ │ └── caseConverter.ts
│ │ │ │ ├── styledFrame.tsx
│ │ │ │ ├── styles
│ │ │ │ │ ├── emojimart.tsx
│ │ │ │ │ ├── reset.js
│ │ │ │ │ ├── styled.tsx
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── textEditor.tsx
│ │ │ │ ├── textEditor
│ │ │ │ │ ├── darkTheme.tsx
│ │ │ │ │ ├── editorStyles.tsx
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ ├── theme.tsx
│ │ │ │ │ └── tourStyles.tsx
│ │ │ │ ├── themeConfig.ts
│ │ │ │ ├── tour
│ │ │ │ │ ├── globalStyle.tsx
│ │ │ │ │ ├── tooltip.tsx
│ │ │ │ │ └── tourHelper.tsx
│ │ │ │ ├── tourManager.tsx
│ │ │ │ └── uploader.tsx
│ │ │ │ ├── favicon.png
│ │ │ │ └── index.ts
│ │ ├── store
│ │ │ ├── README.md
│ │ │ ├── __tests__
│ │ │ │ └── store.test.js
│ │ │ ├── package.json
│ │ │ └── src
│ │ │ │ ├── actions
│ │ │ │ ├── app.ts
│ │ │ │ ├── app_user.ts
│ │ │ │ ├── app_users.ts
│ │ │ │ ├── auth.ts
│ │ │ │ ├── campaigns.ts
│ │ │ │ ├── conversation.ts
│ │ │ │ ├── conversations.ts
│ │ │ │ ├── current_user.ts
│ │ │ │ ├── drawer.ts
│ │ │ │ ├── error_status_code.ts
│ │ │ │ ├── fixedSlider.ts
│ │ │ │ ├── imageZoom.ts
│ │ │ │ ├── navigation.ts
│ │ │ │ ├── notifications.ts
│ │ │ │ ├── paddleSubscription.ts
│ │ │ │ ├── reconnection.ts
│ │ │ │ ├── rtc.ts
│ │ │ │ ├── segments.ts
│ │ │ │ ├── status_messages.ts
│ │ │ │ ├── theme.ts
│ │ │ │ └── upgradePages.ts
│ │ │ │ ├── constants
│ │ │ │ └── action_types.ts
│ │ │ │ ├── graphql
│ │ │ │ ├── README.md
│ │ │ │ ├── client.ts
│ │ │ │ ├── docsQueries.ts
│ │ │ │ ├── fragments.ts
│ │ │ │ ├── graphql.ts
│ │ │ │ ├── mutations.ts
│ │ │ │ ├── package.json
│ │ │ │ ├── queries.ts
│ │ │ │ ├── testEntry.ts
│ │ │ │ └── testEntryts.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── jwt.ts
│ │ └── twilio
│ │ │ ├── CallList.jsx
│ │ │ ├── PhoneCall.jsx
│ │ │ ├── index.js
│ │ │ └── subscriptions.js
│ ├── src
│ │ ├── App.tsx
│ │ ├── AppRoutes.js
│ │ ├── dummyWhitelist.js
│ │ ├── history.js
│ │ ├── images
│ │ │ ├── Poweredby_100px-White_VertText.png
│ │ │ ├── bg
│ │ │ │ ├── .keep
│ │ │ │ ├── delivery-icon8.png
│ │ │ │ ├── empty-icon8.png
│ │ │ │ ├── icons8-bot-50.png
│ │ │ │ ├── notfound-icon8.png
│ │ │ │ ├── patterns
│ │ │ │ │ ├── memphis-mini.png
│ │ │ │ │ └── papyrus-dark.png
│ │ │ │ ├── track.gif
│ │ │ │ ├── up-icon8.png
│ │ │ │ └── welcome-icon8.png
│ │ │ ├── delivery-icon8.png
│ │ │ ├── empty-icon8.png
│ │ │ ├── favicon.png
│ │ │ ├── grid-icon.png
│ │ │ ├── icons8-bot-50.png
│ │ │ ├── ignasi_pattern_s.png
│ │ │ ├── logo-dark.png
│ │ │ ├── logo.png
│ │ │ ├── logos
│ │ │ │ ├── cal.png
│ │ │ │ ├── calendly.png
│ │ │ │ ├── clearbit.png
│ │ │ │ ├── dailytics.png
│ │ │ │ ├── dialog360.png
│ │ │ │ ├── dialogflow.png
│ │ │ │ ├── facebook.png
│ │ │ │ ├── fullcontact.png
│ │ │ │ ├── gumroad.png
│ │ │ │ ├── helpscout.png
│ │ │ │ ├── messagebird.png
│ │ │ │ ├── messenger.png
│ │ │ │ ├── open_ai.png
│ │ │ │ ├── openai.png
│ │ │ │ ├── paddle.png
│ │ │ │ ├── pipedrive.png
│ │ │ │ ├── reveniu.png
│ │ │ │ ├── slack.png
│ │ │ │ ├── stripe.png
│ │ │ │ ├── telegram.png
│ │ │ │ ├── telnyx.png
│ │ │ │ ├── telnyx_sms.png
│ │ │ │ ├── twilio.png
│ │ │ │ ├── twitter.png
│ │ │ │ ├── vonage.png
│ │ │ │ ├── whatsapp.png
│ │ │ │ ├── whereby.png
│ │ │ │ ├── zapier.png
│ │ │ │ └── zoom.png
│ │ │ ├── memphis-colorful.png
│ │ │ ├── notfound-icon8.png
│ │ │ ├── readme.txt
│ │ │ ├── sky.png
│ │ │ ├── track.gif
│ │ │ ├── up-icon8.png
│ │ │ └── welcome-icon8.png
│ │ ├── layout
│ │ │ ├── layoutDefinitions.tsx
│ │ │ ├── mainMenu.tsx
│ │ │ ├── settingsItems.tsx
│ │ │ ├── sidebar.tsx
│ │ │ ├── subscriptionPlanFeatures.js
│ │ │ └── user_menu.tsx
│ │ ├── locales
│ │ │ ├── messenger-translations.json
│ │ │ └── translations.json
│ │ ├── pages
│ │ │ ├── AgentProfile.tsx
│ │ │ ├── Api.tsx
│ │ │ ├── AppContainer.tsx
│ │ │ ├── AppSettings.tsx
│ │ │ ├── Apps.tsx
│ │ │ ├── Articles.tsx
│ │ │ ├── Billing.tsx
│ │ │ ├── BlocksPlayground.tsx
│ │ │ ├── Bots.tsx
│ │ │ ├── Campaigns.tsx
│ │ │ ├── Conversations.tsx
│ │ │ ├── Dashboard.tsx
│ │ │ ├── Integrations.tsx
│ │ │ ├── MessengerSettings.tsx
│ │ │ ├── NewApp.tsx
│ │ │ ├── NotFound.tsx
│ │ │ ├── Platform.tsx
│ │ │ ├── Profile.tsx
│ │ │ ├── Reports.tsx
│ │ │ ├── Settings.tsx
│ │ │ ├── Team.tsx
│ │ │ ├── UnSubscribe.tsx
│ │ │ ├── UpgradePage.tsx
│ │ │ ├── Webhooks.tsx
│ │ │ ├── articles
│ │ │ │ ├── collections
│ │ │ │ │ ├── dnd.tsx
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── show.tsx
│ │ │ │ ├── editor.tsx
│ │ │ │ ├── new.tsx
│ │ │ │ └── settings.tsx
│ │ │ ├── auth
│ │ │ │ ├── acceptInvitation.tsx
│ │ │ │ ├── login.tsx
│ │ │ │ ├── logout.tsx
│ │ │ │ └── signUp.tsx
│ │ │ ├── bots
│ │ │ │ ├── editor.tsx
│ │ │ │ ├── segment.tsx
│ │ │ │ ├── settings.tsx
│ │ │ │ └── taskSettings.tsx
│ │ │ ├── campaigns
│ │ │ │ ├── editor.tsx
│ │ │ │ ├── home.tsx
│ │ │ │ ├── icons.tsx
│ │ │ │ ├── loader.tsx
│ │ │ │ └── settings.tsx
│ │ │ ├── conversations
│ │ │ │ ├── AppInserter.tsx
│ │ │ │ ├── AssignmentRules.tsx
│ │ │ │ ├── Conversation.tsx
│ │ │ │ ├── DialogEditor.tsx
│ │ │ │ ├── Editor.tsx
│ │ │ │ ├── ItemList.tsx
│ │ │ │ ├── ParticipantBlock.tsx
│ │ │ │ ├── QuickReplyDialog.tsx
│ │ │ │ ├── Search.tsx
│ │ │ │ ├── Sidebar.tsx
│ │ │ │ ├── SidebarAgents.tsx
│ │ │ │ ├── appPackagePanel.tsx
│ │ │ │ ├── newEditor.tsx
│ │ │ │ ├── newEditorDraftJs.tsx
│ │ │ │ ├── packageSlider.tsx
│ │ │ │ ├── quickRepliesPanel.tsx
│ │ │ │ ├── tabs.tsx
│ │ │ │ └── triggersPanel.tsx
│ │ │ ├── playground
│ │ │ │ ├── catalog.tsx
│ │ │ │ ├── cm.css
│ │ │ │ └── dracula.css
│ │ │ ├── reports
│ │ │ │ ├── Overview.tsx
│ │ │ │ ├── Package.tsx
│ │ │ │ ├── ReportItem.tsx
│ │ │ │ ├── SidebarMenu.tsx
│ │ │ │ └── renderer.tsx
│ │ │ └── settings
│ │ │ │ ├── AppInserter.tsx
│ │ │ │ ├── Availability.tsx
│ │ │ │ ├── ContactAvatars.tsx
│ │ │ │ ├── EditorSettings.tsx
│ │ │ │ ├── EmailRequirement.tsx
│ │ │ │ ├── InboundSettings.tsx
│ │ │ │ ├── Language.tsx
│ │ │ │ ├── QuickReplies.tsx
│ │ │ │ ├── Styling.tsx
│ │ │ │ ├── Tags.tsx
│ │ │ │ ├── UserDataFields.tsx
│ │ │ │ ├── VerificationView.tsx
│ │ │ │ └── form.tsx
│ │ ├── serviceWorker.js
│ │ ├── setupTests.js
│ │ ├── shared
│ │ │ ├── FakeI18n.ts
│ │ │ ├── absintheCableSubscription.ts
│ │ │ ├── actionCableSubscription.ts
│ │ │ ├── langsOptions.ts
│ │ │ ├── logos.ts
│ │ │ └── timezones.ts
│ │ └── sounds
│ │ │ ├── BING-E5.wav
│ │ │ └── BLIB.wav
│ └── twilio_phone_package.js
├── jobs
│ ├── api_channel_notificator_job.rb
│ ├── app_user_event_job.rb
│ ├── app_user_trigger_job.rb
│ ├── application_job.rb
│ ├── audit_job.rb
│ ├── contact_merger_job.rb
│ ├── conversation_channel_sync_job.rb
│ ├── data_enrichment_job.rb
│ ├── email_chat_notifier_job.rb
│ ├── event_trigger_processor_job.rb
│ ├── hook_message_receiver_job.rb
│ ├── list_importer_job.rb
│ ├── mail_importer_job.rb
│ ├── mail_sender_job.rb
│ ├── offline_checker_job.rb
│ ├── outgoing_webhook_dispatcher_job.rb
│ ├── outgoing_webhook_job.rb
│ ├── ses_sender_job.rb
│ └── sns_receiver_job.rb
├── mailers
│ ├── application_mailer.rb
│ ├── assignee_mailer.rb
│ ├── campaign_mailer.rb
│ ├── chat_notifier_mailer.rb
│ └── import_mailer.rb
├── models
│ ├── agent.rb
│ ├── agent_team.rb
│ ├── app.rb
│ ├── app_package.rb
│ ├── app_package_integration.rb
│ ├── app_user.rb
│ ├── application_record.rb
│ ├── article.rb
│ ├── article_collection.rb
│ ├── article_content.rb
│ ├── article_setting.rb
│ ├── assignment_rule.rb
│ ├── audit.rb
│ ├── auth_identity.rb
│ ├── banner.rb
│ ├── bot_task.rb
│ ├── campaign.rb
│ ├── collection_section.rb
│ ├── concerns
│ │ ├── .keep
│ │ ├── auditable_behavior.rb
│ │ ├── avatar.rb
│ │ ├── connectivity.rb
│ │ ├── email_validable.rb
│ │ ├── eventable.rb
│ │ ├── globalize_accessors.rb
│ │ ├── inbound_address.rb
│ │ ├── notificable.rb
│ │ ├── subscribable.rb
│ │ ├── tokenable.rb
│ │ ├── union_scope.rb
│ │ └── user_handler.rb
│ ├── conversation.rb
│ ├── conversation_channel.rb
│ ├── conversation_part.rb
│ ├── conversation_part_block.rb
│ ├── conversation_part_channel_source.rb
│ ├── conversation_part_content.rb
│ ├── conversation_part_event.rb
│ ├── conversation_source.rb
│ ├── event.rb
│ ├── events
│ │ ├── conversation_user_first_comment.rb
│ │ ├── conversations_added.rb
│ │ ├── conversations_assigned.rb
│ │ ├── conversations_closed.rb
│ │ ├── conversations_prioritized.rb
│ │ ├── conversations_reopened.rb
│ │ ├── conversations_started.rb
│ │ ├── email_changed.rb
│ │ ├── leads_convert.rb
│ │ ├── leads_verified.rb
│ │ ├── users_created.rb
│ │ └── visitors_convert.rb
│ ├── external_profile.rb
│ ├── lead.rb
│ ├── message.rb
│ ├── metric.rb
│ ├── outgoing_webhook.rb
│ ├── plan.rb
│ ├── plugin.rb
│ ├── preview_card.rb
│ ├── quick_reply.rb
│ ├── role.rb
│ ├── segment.rb
│ ├── segment_comparator.rb
│ ├── session_finder.rb
│ ├── team.rb
│ ├── tour.rb
│ ├── user.rb
│ ├── user_auto_message.rb
│ ├── visit.rb
│ └── visitor.rb
├── policies
│ └── app_policy.rb
├── services
│ ├── action_trigger.rb
│ ├── action_trigger_factory.rb
│ ├── agent_dashboard.rb
│ ├── app_package_dashboard.rb
│ ├── app_user_dashboard.rb
│ ├── base_service.rb
│ ├── dante
│ │ ├── audio_recorder_renderer.rb
│ │ ├── converter.rb
│ │ ├── divider_block_renderer.rb
│ │ ├── embed_block_renderer.rb
│ │ ├── file_block_renderer.rb
│ │ ├── image_block_renderer.rb
│ │ ├── migrator.rb
│ │ ├── renderer.rb
│ │ ├── utils.rb
│ │ └── video_block_renderer.rb
│ ├── dashboard.rb
│ ├── data_enrichment_service
│ │ └── base.rb
│ ├── digital_ocean
│ │ └── api.rb
│ ├── eu_countries.rb
│ ├── fetch_link_card_service.rb
│ ├── message_apis
│ │ ├── README.md
│ │ ├── article_search
│ │ │ ├── api.rb
│ │ │ └── presenter.rb
│ │ ├── audits_reports
│ │ │ └── api.rb
│ │ ├── base_package.rb
│ │ ├── block_manager.rb
│ │ ├── contact_fields
│ │ │ ├── api.rb
│ │ │ └── presenter.rb
│ │ ├── content_showcase
│ │ │ ├── api.rb
│ │ │ └── presenter.rb
│ │ ├── csat
│ │ │ ├── api.rb
│ │ │ └── presenter.rb
│ │ ├── helpers.rb
│ │ ├── inbox_sections
│ │ │ ├── api.rb
│ │ │ └── presenter.rb
│ │ ├── oauth_utils.rb
│ │ ├── presenter_helpers.rb
│ │ └── ui_catalog
│ │ │ ├── api.rb
│ │ │ └── presenter.rb
│ ├── origin_validator.rb
│ ├── outgoing_webhook_service.rb
│ ├── payment_services
│ │ ├── paddle.rb
│ │ └── stripe_service.rb
│ ├── permissions_service.rb
│ ├── plugin_schema_validator.rb
│ ├── plugins
│ │ └── tar_downloader.rb
│ ├── segment_factory.rb
│ ├── user_finder.rb
│ └── visit_collector.rb
├── validators
│ ├── hex_validator.rb
│ └── url_validator.rb
└── views
│ ├── app_packages
│ ├── calendly
│ │ └── show.erb
│ ├── typeform
│ │ └── show.erb
│ └── zoom
│ │ └── show.erb
│ ├── assignee_mailer
│ └── notify.html.erb
│ ├── campaign_mailer
│ ├── _subscription_links.erb
│ └── newsletter.erb
│ ├── campaigns
│ ├── _campaign.json.jbuilder
│ ├── _form.html.erb
│ ├── edit.html.erb
│ ├── iframe.html.haml
│ ├── index.html.erb
│ ├── index.json.jbuilder
│ ├── new.html.erb
│ ├── premailer_preview.haml
│ ├── show.html.erb
│ └── show.json.jbuilder
│ ├── chat_notifier_mailer
│ ├── agent_notify.html.haml
│ └── notify.html.haml
│ ├── client_tester
│ ├── _html.erb
│ ├── _simple.erb
│ ├── _store.erb
│ ├── _twitter.erb
│ └── show.erb
│ ├── devise
│ ├── confirmations
│ │ └── new.html.erb
│ ├── mailer
│ │ ├── confirmation_instructions.html.erb
│ │ ├── email_changed.html.erb
│ │ ├── password_change.html.erb
│ │ ├── reset_password_instructions.html.erb
│ │ └── unlock_instructions.html.erb
│ ├── passwords
│ │ ├── edit.html.erb
│ │ └── new.html.erb
│ ├── registrations
│ │ ├── edit.html.erb
│ │ └── new.html.erb
│ ├── sessions
│ │ └── new.html.erb
│ ├── shared
│ │ ├── _error_messages.html.erb
│ │ └── _links.html.erb
│ └── unlocks
│ │ └── new.html.erb
│ ├── home
│ ├── package_frame.html.erb
│ └── show.erb
│ ├── import_mailer
│ └── notify.erb
│ ├── layouts
│ ├── application.html.erb
│ ├── articles.html.erb
│ ├── client.html.erb
│ ├── devise.erb
│ ├── mailer.html.erb
│ └── mailer.text.erb
│ └── shared
│ └── _flash.erb
├── babel-esbuild.mjs
├── babel-plugin-macros.config.js
├── babel.config.js
├── bin
├── bundle
├── dev
├── heroku-web
├── heroku-worker
├── rails
├── rake
├── setup
├── spring
├── test
├── update
└── yarn
├── config.ru
├── config
├── anycable.yml
├── application.rb
├── boot.rb
├── cable.yml
├── chaskiq_boot.rb
├── credentials
│ └── README.md
├── database.yml
├── environment.rb
├── environments
│ ├── development.rb
│ ├── production.rb
│ ├── staging.rb
│ └── test.rb
├── i18n.yml
├── initializers
│ ├── app_subdomains.rb
│ ├── application_controller_renderer.rb
│ ├── assets.rb
│ ├── backtrace_silencers.rb
│ ├── before_start.rb
│ ├── bugsnag.rb
│ ├── content_security_policy.rb
│ ├── cookies_serializer.rb
│ ├── country_names.rb
│ ├── cypress_on_rails.rb
│ ├── devise.rb
│ ├── doorkeeper.rb
│ ├── filter_parameter_logging.rb
│ ├── geocoder.rb
│ ├── geocoder_request.rb
│ ├── i18n.rb
│ ├── inflections.rb
│ ├── mime_types.rb
│ ├── new_framework_defaults_6_0.rb
│ ├── new_framework_defaults_7_0.rb
│ ├── nightfury.rb
│ ├── oembed.rb
│ ├── pay.rb
│ ├── permissions_config.rb
│ ├── permissions_policy.rb
│ ├── plans.rb
│ ├── plugin_verifier.rb
│ ├── ransack.rb
│ ├── redis.rb
│ ├── rotator.rb
│ ├── s3.rb
│ ├── searchkick.rb
│ ├── session_store.rb
│ ├── sidekiq.rb
│ ├── trueemail.rb
│ └── wrap_parameters.rb
├── locales
│ ├── af.yml
│ ├── ar.yml
│ ├── base.es.yml
│ ├── ca.yml
│ ├── cs.yml
│ ├── da.yml
│ ├── de.yml
│ ├── definitions.af.yml
│ ├── definitions.ar.yml
│ ├── definitions.ca.yml
│ ├── definitions.cs.yml
│ ├── definitions.da.yml
│ ├── definitions.de.yml
│ ├── definitions.el.yml
│ ├── definitions.en.yml
│ ├── definitions.es.yml
│ ├── definitions.fa.yml
│ ├── definitions.fi.yml
│ ├── definitions.fr.yml
│ ├── definitions.he.yml
│ ├── definitions.hu.yml
│ ├── definitions.it.yml
│ ├── definitions.ja.yml
│ ├── definitions.ko.yml
│ ├── definitions.nl.yml
│ ├── definitions.no.yml
│ ├── definitions.pl.yml
│ ├── definitions.pt.yml
│ ├── definitions.ro.yml
│ ├── definitions.ru.yml
│ ├── definitions.sr.yml
│ ├── definitions.sv.yml
│ ├── definitions.tr.yml
│ ├── definitions.uk.yml
│ ├── definitions.vi.yml
│ ├── definitions.zh.yml
│ ├── devise.af.yml
│ ├── devise.ar.yml
│ ├── devise.ca.yml
│ ├── devise.cs.yml
│ ├── devise.da.yml
│ ├── devise.de.yml
│ ├── devise.el.yml
│ ├── devise.en.yml
│ ├── devise.es.yml
│ ├── devise.fa.yml
│ ├── devise.fi.yml
│ ├── devise.fr.yml
│ ├── devise.he.yml
│ ├── devise.hu.yml
│ ├── devise.it.yml
│ ├── devise.ja.yml
│ ├── devise.ko.yml
│ ├── devise.nl.yml
│ ├── devise.no.yml
│ ├── devise.pl.yml
│ ├── devise.pt.yml
│ ├── devise.ro.yml
│ ├── devise.ru.yml
│ ├── devise.sr.yml
│ ├── devise.sv.yml
│ ├── devise.tr.yml
│ ├── devise.uk.yml
│ ├── devise.vi.yml
│ ├── devise.zh.yml
│ ├── devise_invitable.af.yml
│ ├── devise_invitable.ar.yml
│ ├── devise_invitable.ca.yml
│ ├── devise_invitable.cs.yml
│ ├── devise_invitable.da.yml
│ ├── devise_invitable.de.yml
│ ├── devise_invitable.el.yml
│ ├── devise_invitable.en.yml
│ ├── devise_invitable.es.yml
│ ├── devise_invitable.fa.yml
│ ├── devise_invitable.fi.yml
│ ├── devise_invitable.fr.yml
│ ├── devise_invitable.he.yml
│ ├── devise_invitable.hu.yml
│ ├── devise_invitable.it.yml
│ ├── devise_invitable.ja.yml
│ ├── devise_invitable.ko.yml
│ ├── devise_invitable.nl.yml
│ ├── devise_invitable.no.yml
│ ├── devise_invitable.pl.yml
│ ├── devise_invitable.pt.yml
│ ├── devise_invitable.ro.yml
│ ├── devise_invitable.ru.yml
│ ├── devise_invitable.sr.yml
│ ├── devise_invitable.sv.yml
│ ├── devise_invitable.tr.yml
│ ├── devise_invitable.uk.yml
│ ├── devise_invitable.vi.yml
│ ├── devise_invitable.zh.yml
│ ├── doorkeeper.af.yml
│ ├── doorkeeper.ar.yml
│ ├── doorkeeper.ca.yml
│ ├── doorkeeper.cs.yml
│ ├── doorkeeper.da.yml
│ ├── doorkeeper.de.yml
│ ├── doorkeeper.el.yml
│ ├── doorkeeper.en.yml
│ ├── doorkeeper.es.yml
│ ├── doorkeeper.fa.yml
│ ├── doorkeeper.fi.yml
│ ├── doorkeeper.fr.yml
│ ├── doorkeeper.he.yml
│ ├── doorkeeper.hu.yml
│ ├── doorkeeper.it.yml
│ ├── doorkeeper.ja.yml
│ ├── doorkeeper.ko.yml
│ ├── doorkeeper.nl.yml
│ ├── doorkeeper.no.yml
│ ├── doorkeeper.pl.yml
│ ├── doorkeeper.pt.yml
│ ├── doorkeeper.ro.yml
│ ├── doorkeeper.ru.yml
│ ├── doorkeeper.sr.yml
│ ├── doorkeeper.sv.yml
│ ├── doorkeeper.tr.yml
│ ├── doorkeeper.uk.yml
│ ├── doorkeeper.vi.yml
│ ├── doorkeeper.zh.yml
│ ├── el.yml
│ ├── en.yml
│ ├── es.yml
│ ├── fa.yml
│ ├── fi.yml
│ ├── fr.yml
│ ├── he.yml
│ ├── hints.af.yml
│ ├── hints.ar.yml
│ ├── hints.ca.yml
│ ├── hints.cs.yml
│ ├── hints.da.yml
│ ├── hints.de.yml
│ ├── hints.el.yml
│ ├── hints.en.yml
│ ├── hints.es.yml
│ ├── hints.fa.yml
│ ├── hints.fi.yml
│ ├── hints.fr.yml
│ ├── hints.he.yml
│ ├── hints.hu.yml
│ ├── hints.it.yml
│ ├── hints.ja.yml
│ ├── hints.ko.yml
│ ├── hints.nl.yml
│ ├── hints.no.yml
│ ├── hints.pl.yml
│ ├── hints.pt.yml
│ ├── hints.ro.yml
│ ├── hints.ru.yml
│ ├── hints.sr.yml
│ ├── hints.sv.yml
│ ├── hints.tr.yml
│ ├── hints.uk.yml
│ ├── hints.vi.yml
│ ├── hints.zh.yml
│ ├── hu.yml
│ ├── it.yml
│ ├── ja.yml
│ ├── ko.yml
│ ├── messenger.en.yml
│ ├── messenger.es.yml
│ ├── messenger.fr.yml
│ ├── nl.yml
│ ├── no.yml
│ ├── pl.yml
│ ├── pt.yml
│ ├── ro.yml
│ ├── ru.yml
│ ├── sr.yml
│ ├── subscriptions.af.yml
│ ├── subscriptions.ar.yml
│ ├── subscriptions.ca.yml
│ ├── subscriptions.cs.yml
│ ├── subscriptions.da.yml
│ ├── subscriptions.de.yml
│ ├── subscriptions.el.yml
│ ├── subscriptions.en.yml
│ ├── subscriptions.es.yml
│ ├── subscriptions.fa.yml
│ ├── subscriptions.fi.yml
│ ├── subscriptions.fr.yml
│ ├── subscriptions.he.yml
│ ├── subscriptions.hu.yml
│ ├── subscriptions.it.yml
│ ├── subscriptions.ja.yml
│ ├── subscriptions.ko.yml
│ ├── subscriptions.nl.yml
│ ├── subscriptions.no.yml
│ ├── subscriptions.pl.yml
│ ├── subscriptions.pt.yml
│ ├── subscriptions.ro.yml
│ ├── subscriptions.ru.yml
│ ├── subscriptions.sr.yml
│ ├── subscriptions.sv.yml
│ ├── subscriptions.tr.yml
│ ├── subscriptions.uk.yml
│ ├── subscriptions.vi.yml
│ ├── subscriptions.zh.yml
│ ├── sv.yml
│ ├── tr.yml
│ ├── uk.yml
│ ├── vi.yml
│ └── zh.yml
├── middleware
│ └── maintenance_mode.rb
├── permissions.yml
├── puma.rb
├── redis
│ └── shared.yml
├── routes.rb
├── scout_apm.yml
├── sidekiq.yml
├── spring.rb
├── storage.yml
├── subscriptions.yml
└── tailwind.config.js
├── crowdin.yml
├── cypress.config.ts
├── db
├── migrate
│ ├── 20180529010922_create_apps.rb
│ ├── 20180529012517_devise_create_agents.rb
│ ├── 20180529012648_create_app_users.rb
│ ├── 20180529012723_create_conversations.rb
│ ├── 20180529013001_create_conversation_parts.rb
│ ├── 20180531050057_create_segments.rb
│ ├── 20180616050512_create_campaigns.rb
│ ├── 20180616202654_create_metrics.rb
│ ├── 20180617011650_create_roles.rb
│ ├── 20180628051731_create_active_storage_tables.active_storage.rb
│ ├── 20180629075252_create_preview_cards.rb
│ ├── 20190331052829_add_foreign_key_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb
│ ├── 20190618231735_create_visits.rb
│ ├── 20190622233947_create_conversation_part_contents.rb
│ ├── 20190629044525_create_events.rb
│ ├── 20190703161450_create_assignment_rules.rb
│ ├── 20190704055426_add_type_to_app_user.rb
│ ├── 20190704172212_devise_invitable_add_to_agents.rb
│ ├── 20190710163838_create_articles.rb
│ ├── 20190710172328_create_article_contents.rb
│ ├── 20190716044652_create_article_collections.rb
│ ├── 20190716044802_create_collection_sections.rb
│ ├── 20190723035210_create_article_settings.rb
│ ├── 20190726171509_create_translation_table_for_articles.rb
│ ├── 20190726182749_create_translation_table_for_article_settings.rb
│ ├── 20190727055620_create_translation_table_for_article_collections.rb
│ ├── 20190727195810_create_translation_table_for_collection_setctions.rb
│ ├── 20190727224507_create_translation_table_for_article_content.rb
│ ├── 20190819194702_create_bot_tasks.rb
│ ├── 20190831233001_create_translation_table_for_app.rb
│ ├── 20190926032859_add_step_id_to_conversation_part.rb
│ ├── 20190926163125_create_conversation_part_blocks.rb
│ ├── 20190927232347_add_bot_to_agents.rb
│ ├── 20190930224039_create_app_packages.rb
│ ├── 20190930224248_create_app_package_integrations.rb
│ ├── 20191002234602_add_user_to_metric.rb
│ ├── 20191010202220_add_type_to_bot_tasks.rb
│ ├── 20191120140857_create_conversation_part_events.rb
│ ├── 20191210032407_add_first_agent_reply_to_conversations.rb
│ ├── 20191211020453_add_date_fields_to_app_user.rb
│ ├── 20191220123228_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb
│ ├── 20191220123229_add_missing_unique_indices.acts_as_taggable_on_engine.rb
│ ├── 20191220123230_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb
│ ├── 20191220123231_add_missing_taggable_index.acts_as_taggable_on_engine.rb
│ ├── 20191220123232_change_collation_for_tag_names.acts_as_taggable_on_engine.rb
│ ├── 20191220123233_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb
│ ├── 20191225065950_create_doorkeeper_tables.rb
│ ├── 20200116184447_create_conversation_sources.rb
│ ├── 20200204180131_create_conversation_channels.rb
│ ├── 20200204223244_create_conversation_part_channel_sources.rb
│ ├── 20200212035513_create_external_profiles.rb
│ ├── 20200216213336_create_outgoing_webhooks.rb
│ ├── 20200417030708_change_oauth_applications_constraint.rb
│ ├── 20200522072756_update_doorkeeper_constrains.rb
│ ├── 20200525033626_add_owner_to_application.rb
│ ├── 20200618071819_add_external_id_to_app_package_integrations.rb
│ ├── 20200625201009_add_position_to_bot_tasks.rb
│ ├── 20200627085440_add_available_mode_to_agents.rb
│ ├── 20200704054926_create_quick_replies.rb
│ ├── 20200704220911_add_translation_tables_for_quick_replies.rb
│ ├── 20200730031419_add_owner_to_app.rb
│ ├── 20201003043744_add_author_to_app_package.rb
│ ├── 20201105180406_add_index_to_app_user_session_id.rb
│ ├── 20201106034507_add_index_to_app_user_email.rb
│ ├── 20201210184517_add_service_name_to_active_storage_blobs.active_storage.rb
│ ├── 20201210184518_create_active_storage_variant_records.active_storage.rb
│ ├── 20210222043052_update_bot_tasks.rb
│ ├── 20210228060235_add_position_to_campaigns.rb
│ ├── 20210228160317_add_bot_type_to_bot_task.rb
│ ├── 20210716054317_add_closed_at_to_conversation.rb
│ ├── 20210802034139_add_subject_to_conversation.rb
│ ├── 20210807022452_add_name_index_to_app_package.rb
│ ├── 20210807022619_add_subdomain_index_to_article_settings.rb
│ ├── 20211118032503_create_audits.rb
│ ├── 20211125032212_add_reference_to_audit.rb
│ ├── 20211224190304_add_roles_from_access_list.rb
│ ├── 20220222200854_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb
│ ├── 20220519012507_add_blocked_fields_to_conversations.rb
│ ├── 20220802235735_change_app_preferences_code.rb
│ ├── 20220923035841_create_teams.rb
│ ├── 20220923035927_create_agent_teams.rb
│ ├── 20220928200122_add_role_to_team.rb
│ ├── 20221005144614_create_auth_identities.rb
│ ├── 20230303214128_add_data_to_conversation_channel.rb
│ ├── 20230405043104_create_plugins.rb
│ └── 20230423132840_add_version_to_plugin.rb
├── schema.rb
└── seeds.rb
├── docker-compose.yml
├── esbuild.config.mjs
├── esbuild
└── process-shim.js
├── hooks
└── build
├── index.d.ts
├── lerna-debug.log
├── lerna.json
├── lib
├── app_packages_catalog.rb
├── assets
│ └── .keep
├── auth0_web_token.rb
├── dummy_name.rb
├── generators
│ └── chaskiq_plugin
│ │ ├── USAGE
│ │ ├── chaskiq_plugin_generator.rb
│ │ └── templates
│ │ ├── api.rb.template
│ │ └── presenter.rb.template
├── link_renamer.rb
├── omniauth
│ └── strategies
│ │ └── doorkeeper.rb
├── rack
│ └── health_check.rb
├── subdomain_routes.rb
└── tasks
│ ├── .keep
│ ├── admin_generator.rake
│ ├── graphql.rake
│ ├── user_generator.rake
│ └── utils.rake
├── log
└── .keep
├── package.json
├── postcss.config.js
├── prettier.config.js
├── public
├── 404.html
├── 422.html
├── 500.html
├── apple-touch-icon-precomposed.png
├── apple-touch-icon.png
├── favicon.ico
├── logo-gray.png
├── maintenance.html
├── robots.txt
├── schema.json
└── sounds
│ ├── BING-E5.wav
│ ├── BLIB.wav
│ ├── GLAZE.wav
│ ├── NORMAN.wav
│ └── ringtone.wav
├── rollup.config.js
├── spec
├── controllers
│ ├── agents
│ │ ├── invitations_controller_spec.rb
│ │ └── omniauth_callbacks_controller_spec.rb
│ ├── api
│ │ ├── graphql_controller_spec.rb
│ │ └── v1
│ │ │ ├── conversations_controller_spec.rb
│ │ │ ├── hooks
│ │ │ ├── calendly_spec.rb
│ │ │ ├── csat_spec.rb
│ │ │ ├── dialog_360_spec.rb
│ │ │ ├── message_bird_spec.rb
│ │ │ ├── messenger_spec.rb
│ │ │ ├── openai_spec.rb
│ │ │ ├── pipedrive_spec.rb
│ │ │ ├── slack_spec.rb
│ │ │ ├── telegram_spec.rb
│ │ │ ├── telnyx_sms_spec.rb
│ │ │ ├── twilio_phone_spec.rb
│ │ │ ├── twilio_spec.rb
│ │ │ ├── twitter_spec.rb
│ │ │ ├── vonage_spec.rb
│ │ │ ├── zapier_spec.rb
│ │ │ └── zoom_spec.rb
│ │ │ ├── hooks_controller_spec.rb
│ │ │ └── subscriptions
│ │ │ └── paddle_hooks_controller_spec.rb
│ ├── client_tester_controller_spec.rb
│ ├── graphql
│ │ ├── agent_spec.rb
│ │ ├── app_package_integration_spec.rb
│ │ ├── app_spec.rb
│ │ ├── app_user_spec.rb
│ │ ├── article_spec.rb
│ │ ├── conversations_spec.rb
│ │ ├── outgoing_webhooks_spec.rb
│ │ ├── segments_spec.rb
│ │ └── user_session_spec.rb
│ ├── oembed_controller_spec.rb
│ └── widgets_controller_spec.rb
├── cypress.json
├── cypress
│ ├── app_commands
│ │ ├── activerecord_fixtures.rb
│ │ ├── banner_command.rb
│ │ ├── bot_task_command.rb
│ │ ├── clean.rb
│ │ ├── eval.rb
│ │ ├── factory_bot.rb
│ │ ├── log_fail.rb
│ │ ├── new_conversation_bot_task_command.rb
│ │ ├── scenarios
│ │ │ ├── app_bot_settings.rb
│ │ │ ├── basic.rb
│ │ │ ├── invitation.rb
│ │ │ ├── start_conversation_from_agent.rb
│ │ │ ├── start_conversation_from_user.rb
│ │ │ └── user_auto_message.rb
│ │ ├── start_conversation_command.rb
│ │ ├── tour_command.rb
│ │ └── user_auto_message.rb
│ ├── cypress_helper.rb
│ ├── fixtures
│ │ └── example.json
│ ├── integration
│ │ ├── app
│ │ │ ├── agent_invitation.js
│ │ │ ├── app_packages_spec.js
│ │ │ ├── apps_spec.js
│ │ │ ├── bot_tasks.spec.js
│ │ │ ├── conversations_spec.js
│ │ │ ├── login_spec.js
│ │ │ └── settings_spec.js
│ │ └── messenger
│ │ │ ├── app_packages_spec.js
│ │ │ ├── availability_spec.js
│ │ │ ├── banners_spec.js
│ │ │ ├── conversations_spec.js
│ │ │ ├── customization_spec.js
│ │ │ ├── event_triggering_spec.js
│ │ │ ├── helpers.js
│ │ │ ├── my_test_spec.js
│ │ │ ├── privacy_spec.js
│ │ │ ├── task_bot_spec.js
│ │ │ ├── tours_spec.js
│ │ │ ├── translations_spec.js
│ │ │ └── user_auto_messages_spec.js
│ ├── plugins
│ │ └── index.js
│ └── support
│ │ └── index.js
├── factories
│ └── factories.rb
├── fixtures
│ ├── csv_example copy.csv
│ ├── csv_example.csv
│ ├── csv_example.xlsx
│ ├── emails
│ │ ├── aws_sample.eml
│ │ ├── aws_sample_as_attachment.eml
│ │ └── aws_sample_multi_inline_attachment.eml
│ └── requests
│ │ └── idn.txt
├── generator
│ └── chaskiq_plugins_generator_spec.rb
├── importers
│ └── list_spec.rb
├── jobs
│ ├── email_chat_notifier_job_spec.rb
│ ├── list_importer_job_spec.rb
│ ├── mail_importer_job_spec.rb
│ ├── offline_checker_job_spec.rb
│ ├── ses_sender_job_spec.rb
│ └── sns_receiver_job_spec.rb
├── mailers
│ ├── campaign_spec.rb
│ ├── chat_notifier_spec.rb
│ └── previews
│ │ ├── campaign_preview.rb
│ │ └── chat_notifier_preview.rb
├── models
│ ├── agent_spec.rb
│ ├── agent_team_spec.rb
│ ├── app_package_integration_spec.rb
│ ├── app_package_spec.rb
│ ├── app_spec.rb
│ ├── app_user_spec.rb
│ ├── article_collection_spec.rb
│ ├── article_content_spec.rb
│ ├── article_setting_spec.rb
│ ├── article_spec.rb
│ ├── assignment_rule_spec.rb
│ ├── audit_spec.rb
│ ├── auth_identity_spec.rb
│ ├── bot_task_spec.rb
│ ├── campaign_spec.rb
│ ├── collection_section_spec.rb
│ ├── conversation_channel_spec.rb
│ ├── conversation_part_block_spec.rb
│ ├── conversation_part_channel_source_spec.rb
│ ├── conversation_part_content_spec.rb
│ ├── conversation_part_event_spec.rb
│ ├── conversation_part_spec.rb
│ ├── conversation_source_spec.rb
│ ├── conversation_spec.rb
│ ├── event_spec.rb
│ ├── external_profile_spec.rb
│ ├── metric_spec.rb
│ ├── outgoing_webhook_spec.rb
│ ├── plugin_spec.rb
│ ├── preview_card_spec.rb
│ ├── quick_reply_spec.rb
│ ├── role_spec.rb
│ ├── segment_spec.rb
│ ├── team_spec.rb
│ ├── tour_spec.rb
│ ├── user_auto_message_spec.rb
│ └── visit_spec.rb
├── rails_helper.rb
├── services
│ ├── action_trigger_factory_spec.rb
│ ├── config_spec.rb
│ ├── dante_renderer_spec.rb
│ ├── fetch_link_service_spec.rb
│ ├── origin_validator_spec.rb
│ ├── schema_validations_spec.rb
│ └── visit_collector.rb
├── spec_helper.rb
├── support
│ ├── graphql_queries.rb
│ ├── spreadsheet.rb
│ └── stub_current_user.rb
└── system
│ └── test_spec.rb--disabled
├── tsconfig.json
├── vendor
├── .keep
└── data
│ ├── GeoIPv6.dat
│ └── GeoLiteCityv6.dat
└── yarn.lock
/.codeclimate.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.codeclimate.yml
--------------------------------------------------------------------------------
/.devcontainer/devcontainer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.devcontainer/devcontainer.json
--------------------------------------------------------------------------------
/.docker-files/deps.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.docker-files/deps.sh
--------------------------------------------------------------------------------
/.docker-files/node.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.docker-files/node.sh
--------------------------------------------------------------------------------
/.docker-files/pg.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.docker-files/pg.sh
--------------------------------------------------------------------------------
/.dockerdev/.bashrc:
--------------------------------------------------------------------------------
1 | alias be="bundle exec"
--------------------------------------------------------------------------------
/.dockerdev/.psqlrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.dockerdev/.psqlrc
--------------------------------------------------------------------------------
/.dockerdev/Aptfile:
--------------------------------------------------------------------------------
1 | vim
--------------------------------------------------------------------------------
/.dockerignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.dockerignore
--------------------------------------------------------------------------------
/.env.example:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.env.example
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.eslintignore
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.eslintrc.js
--------------------------------------------------------------------------------
/.github/.stale.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/.stale.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/ISSUE_TEMPLATE/bug_report.md
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/ISSUE_TEMPLATE/config.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/ISSUE_TEMPLATE/feature_request.md
--------------------------------------------------------------------------------
/.github/workflows/anchore-analysis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/workflows/anchore-analysis.yml
--------------------------------------------------------------------------------
/.github/workflows/docker-image-ghcr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/workflows/docker-image-ghcr.yml
--------------------------------------------------------------------------------
/.github/workflows/dockerimage.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/workflows/dockerimage.yml
--------------------------------------------------------------------------------
/.github/workflows/rubocop-analysis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/workflows/rubocop-analysis.yml
--------------------------------------------------------------------------------
/.github/workflows/ruby.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.github/workflows/ruby.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.gitignore
--------------------------------------------------------------------------------
/.husky/pre-commit:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.husky/pre-commit
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.prettierignore
--------------------------------------------------------------------------------
/.rspec:
--------------------------------------------------------------------------------
1 | --require spec_helper
2 |
--------------------------------------------------------------------------------
/.rubocop.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.rubocop.yml
--------------------------------------------------------------------------------
/.rubocop_todo.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.rubocop_todo.yml
--------------------------------------------------------------------------------
/.ruby-version:
--------------------------------------------------------------------------------
1 | 3.3.5
--------------------------------------------------------------------------------
/.unimportedrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/.unimportedrc.json
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/Dockerfile
--------------------------------------------------------------------------------
/Dockerfile.development:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/Dockerfile.development
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/Gemfile
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/Gemfile.lock
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/LICENSE.txt
--------------------------------------------------------------------------------
/Procfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/Procfile
--------------------------------------------------------------------------------
/Procfile.dev:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/Procfile.dev
--------------------------------------------------------------------------------
/Procfile.test:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/Procfile.test
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/README.md
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/Rakefile
--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/SECURITY.md
--------------------------------------------------------------------------------
/app.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app.json
--------------------------------------------------------------------------------
/app/assets/builds/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/assets/config/manifest.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/config/manifest.js
--------------------------------------------------------------------------------
/app/assets/images/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/assets/images/delivery-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/delivery-icon8.png
--------------------------------------------------------------------------------
/app/assets/images/empty-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/empty-icon8.png
--------------------------------------------------------------------------------
/app/assets/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/favicon.png
--------------------------------------------------------------------------------
/app/assets/images/icons8-bot-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/icons8-bot-50.png
--------------------------------------------------------------------------------
/app/assets/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/logo.png
--------------------------------------------------------------------------------
/app/assets/images/notfound-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/notfound-icon8.png
--------------------------------------------------------------------------------
/app/assets/images/track.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/track.gif
--------------------------------------------------------------------------------
/app/assets/images/up-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/up-icon8.png
--------------------------------------------------------------------------------
/app/assets/images/welcome-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/images/welcome-icon8.png
--------------------------------------------------------------------------------
/app/assets/javascripts/channels/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/assets/stylesheets/inter.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/assets/stylesheets/inter.scss
--------------------------------------------------------------------------------
/app/assets/stylesheets/sessions.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/channels/agent_channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/channels/agent_channel.rb
--------------------------------------------------------------------------------
/app/channels/application_cable/channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/channels/application_cable/channel.rb
--------------------------------------------------------------------------------
/app/channels/application_cable/connection.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/channels/application_cable/connection.rb
--------------------------------------------------------------------------------
/app/channels/events_channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/channels/events_channel.rb
--------------------------------------------------------------------------------
/app/channels/messenger_events_channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/channels/messenger_events_channel.rb
--------------------------------------------------------------------------------
/app/channels/presence_channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/channels/presence_channel.rb
--------------------------------------------------------------------------------
/app/channels/rtc_channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/channels/rtc_channel.rb
--------------------------------------------------------------------------------
/app/controllers/agents/auth0_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/agents/auth0_controller.rb
--------------------------------------------------------------------------------
/app/controllers/agents/passwords_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/agents/passwords_controller.rb
--------------------------------------------------------------------------------
/app/controllers/agents/sessions_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/agents/sessions_controller.rb
--------------------------------------------------------------------------------
/app/controllers/agents/tokens_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/agents/tokens_controller.rb
--------------------------------------------------------------------------------
/app/controllers/api/graphql_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/api/graphql_controller.rb
--------------------------------------------------------------------------------
/app/controllers/api/v1/hooks_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/api/v1/hooks_controller.rb
--------------------------------------------------------------------------------
/app/controllers/api_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/api_controller.rb
--------------------------------------------------------------------------------
/app/controllers/application_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/application_controller.rb
--------------------------------------------------------------------------------
/app/controllers/articles_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/articles_controller.rb
--------------------------------------------------------------------------------
/app/controllers/client_tester_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/client_tester_controller.rb
--------------------------------------------------------------------------------
/app/controllers/concerns/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/controllers/concerns/cors_headers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/concerns/cors_headers.rb
--------------------------------------------------------------------------------
/app/controllers/concerns/hash_ensurer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/concerns/hash_ensurer.rb
--------------------------------------------------------------------------------
/app/controllers/concerns/trackeable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/concerns/trackeable.rb
--------------------------------------------------------------------------------
/app/controllers/graphql_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/graphql_controller.rb
--------------------------------------------------------------------------------
/app/controllers/home_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/home_controller.rb
--------------------------------------------------------------------------------
/app/controllers/oembed_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/oembed_controller.rb
--------------------------------------------------------------------------------
/app/controllers/widgets_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/controllers/widgets_controller.rb
--------------------------------------------------------------------------------
/app/graphql/chaskiq_schema.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/chaskiq_schema.rb
--------------------------------------------------------------------------------
/app/graphql/helpers/authorizator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/helpers/authorizator.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/graphql/mutations/agents/invite.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/agents/invite.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/agents/update_agent.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/agents/update_agent.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/apps/create_app.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/apps/create_app.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/apps/destroy_app.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/apps/destroy_app.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/apps/import_contacts.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/apps/import_contacts.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/apps/update_app.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/apps/update_app.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/articles/edit_article.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/articles/edit_article.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/base_mutation.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/base_mutation.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/bots/create_bot_task.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/bots/create_bot_task.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/bots/delete_bot_task.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/bots/delete_bot_task.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/bots/reorder_bot_task.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/bots/reorder_bot_task.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/bots/update_bot_task.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/bots/update_bot_task.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/clone_message.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/clone_message.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/create_direct_upload.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/create_direct_upload.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/create_url_upload.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/create_url_upload.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/messenger/auth.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/messenger/auth.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/teams/add_team_agent.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/teams/add_team_agent.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/teams/create_team.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/teams/create_team.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/teams/delete_team.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/teams/delete_team.rb
--------------------------------------------------------------------------------
/app/graphql/mutations/teams/update_team.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/mutations/teams/update_team.rb
--------------------------------------------------------------------------------
/app/graphql/types/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/graphql/types/agent_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/agent_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/any_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/any_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/app_package_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/app_package_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/app_params_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/app_params_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/app_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/app_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/app_user_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/app_user_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/article_settings_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/article_settings_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/article_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/article_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/article_url_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/article_url_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/assignment_rule_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/assignment_rule_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/author_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/author_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/base_enum.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/base_enum.rb
--------------------------------------------------------------------------------
/app/graphql/types/base_input_object.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/base_input_object.rb
--------------------------------------------------------------------------------
/app/graphql/types/base_interface.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/base_interface.rb
--------------------------------------------------------------------------------
/app/graphql/types/base_object.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/base_object.rb
--------------------------------------------------------------------------------
/app/graphql/types/base_scalar.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/base_scalar.rb
--------------------------------------------------------------------------------
/app/graphql/types/base_union.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/base_union.rb
--------------------------------------------------------------------------------
/app/graphql/types/bot_path_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/bot_path_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/bot_task_filter_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/bot_task_filter_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/bot_task_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/bot_task_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/campaign_params_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/campaign_params_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/campaign_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/campaign_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/collection_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/collection_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/conversation_part_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/conversation_part_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/conversation_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/conversation_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/external_profile_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/external_profile_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/json_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/json_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/message_input_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/message_input_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/messenger_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/messenger_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/metric_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/metric_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/mutation_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/mutation_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/oauth_application_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/oauth_application_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/paginated_app_users_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/paginated_app_users_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/paginated_articles_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/paginated_articles_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/paginated_bot_tasks_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/paginated_bot_tasks_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/paginated_campaign_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/paginated_campaign_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/paginated_metrics_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/paginated_metrics_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/paginated_results_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/paginated_results_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/paginated_teams_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/paginated_teams_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/paginated_visits_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/paginated_visits_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/predicate_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/predicate_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/public_app_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/public_app_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/public_conversation_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/public_conversation_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/query_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/query_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/quick_reply_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/quick_reply_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/role_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/role_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/section_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/section_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/segment_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/segment_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/team_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/team_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/user_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/user_type.rb
--------------------------------------------------------------------------------
/app/graphql/types/visit_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/graphql/types/visit_type.rb
--------------------------------------------------------------------------------
/app/helpers/application_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/helpers/application_helper.rb
--------------------------------------------------------------------------------
/app/helpers/sanitize_helpers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/helpers/sanitize_helpers.rb
--------------------------------------------------------------------------------
/app/identities/app_identity.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/identities/app_identity.rb
--------------------------------------------------------------------------------
/app/importers/list_importer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/importers/list_importer.rb
--------------------------------------------------------------------------------
/app/javascript/application.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/application.js
--------------------------------------------------------------------------------
/app/javascript/article.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/article.js
--------------------------------------------------------------------------------
/app/javascript/docs.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/docs.js
--------------------------------------------------------------------------------
/app/javascript/docs/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/docs/readme.md
--------------------------------------------------------------------------------
/app/javascript/embed.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/embed.js
--------------------------------------------------------------------------------
/app/javascript/locales.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/locales.js
--------------------------------------------------------------------------------
/app/javascript/packages/components/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/components/README.md
--------------------------------------------------------------------------------
/app/javascript/packages/docs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/docs/README.md
--------------------------------------------------------------------------------
/app/javascript/packages/docs/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/docs/package.json
--------------------------------------------------------------------------------
/app/javascript/packages/docs/src/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/docs/src/index.tsx
--------------------------------------------------------------------------------
/app/javascript/packages/docs/src/site/docs.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/docs/src/site/docs.tsx
--------------------------------------------------------------------------------
/app/javascript/packages/messenger/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/messenger/README.md
--------------------------------------------------------------------------------
/app/javascript/packages/messenger/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/messenger/package.json
--------------------------------------------------------------------------------
/app/javascript/packages/messenger/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/messenger/src/index.ts
--------------------------------------------------------------------------------
/app/javascript/packages/store/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/store/README.md
--------------------------------------------------------------------------------
/app/javascript/packages/store/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/store/package.json
--------------------------------------------------------------------------------
/app/javascript/packages/store/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/store/src/index.ts
--------------------------------------------------------------------------------
/app/javascript/packages/store/src/jwt.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/store/src/jwt.ts
--------------------------------------------------------------------------------
/app/javascript/packages/twilio/CallList.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/twilio/CallList.jsx
--------------------------------------------------------------------------------
/app/javascript/packages/twilio/PhoneCall.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/twilio/PhoneCall.jsx
--------------------------------------------------------------------------------
/app/javascript/packages/twilio/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/packages/twilio/index.js
--------------------------------------------------------------------------------
/app/javascript/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/App.tsx
--------------------------------------------------------------------------------
/app/javascript/src/AppRoutes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/AppRoutes.js
--------------------------------------------------------------------------------
/app/javascript/src/dummyWhitelist.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/dummyWhitelist.js
--------------------------------------------------------------------------------
/app/javascript/src/history.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/history.js
--------------------------------------------------------------------------------
/app/javascript/src/images/bg/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/javascript/src/images/bg/empty-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/bg/empty-icon8.png
--------------------------------------------------------------------------------
/app/javascript/src/images/bg/icons8-bot-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/bg/icons8-bot-50.png
--------------------------------------------------------------------------------
/app/javascript/src/images/bg/track.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/bg/track.gif
--------------------------------------------------------------------------------
/app/javascript/src/images/bg/up-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/bg/up-icon8.png
--------------------------------------------------------------------------------
/app/javascript/src/images/bg/welcome-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/bg/welcome-icon8.png
--------------------------------------------------------------------------------
/app/javascript/src/images/delivery-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/delivery-icon8.png
--------------------------------------------------------------------------------
/app/javascript/src/images/empty-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/empty-icon8.png
--------------------------------------------------------------------------------
/app/javascript/src/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/favicon.png
--------------------------------------------------------------------------------
/app/javascript/src/images/grid-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/grid-icon.png
--------------------------------------------------------------------------------
/app/javascript/src/images/icons8-bot-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/icons8-bot-50.png
--------------------------------------------------------------------------------
/app/javascript/src/images/ignasi_pattern_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/ignasi_pattern_s.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logo-dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logo-dark.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logo.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/cal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/cal.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/calendly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/calendly.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/clearbit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/clearbit.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/dailytics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/dailytics.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/dialog360.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/dialog360.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/dialogflow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/dialogflow.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/facebook.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/gumroad.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/gumroad.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/helpscout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/helpscout.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/messenger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/messenger.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/open_ai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/open_ai.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/openai.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/openai.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/paddle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/paddle.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/pipedrive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/pipedrive.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/reveniu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/reveniu.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/slack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/slack.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/stripe.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/stripe.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/telegram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/telegram.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/telnyx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/telnyx.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/telnyx_sms.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/telnyx_sms.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/twilio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/twilio.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/twitter.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/vonage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/vonage.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/whatsapp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/whatsapp.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/whereby.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/whereby.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/zapier.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/zapier.png
--------------------------------------------------------------------------------
/app/javascript/src/images/logos/zoom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/logos/zoom.png
--------------------------------------------------------------------------------
/app/javascript/src/images/memphis-colorful.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/memphis-colorful.png
--------------------------------------------------------------------------------
/app/javascript/src/images/notfound-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/notfound-icon8.png
--------------------------------------------------------------------------------
/app/javascript/src/images/readme.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/readme.txt
--------------------------------------------------------------------------------
/app/javascript/src/images/sky.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/sky.png
--------------------------------------------------------------------------------
/app/javascript/src/images/track.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/track.gif
--------------------------------------------------------------------------------
/app/javascript/src/images/up-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/up-icon8.png
--------------------------------------------------------------------------------
/app/javascript/src/images/welcome-icon8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/images/welcome-icon8.png
--------------------------------------------------------------------------------
/app/javascript/src/layout/mainMenu.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/layout/mainMenu.tsx
--------------------------------------------------------------------------------
/app/javascript/src/layout/settingsItems.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/layout/settingsItems.tsx
--------------------------------------------------------------------------------
/app/javascript/src/layout/sidebar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/layout/sidebar.tsx
--------------------------------------------------------------------------------
/app/javascript/src/layout/user_menu.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/layout/user_menu.tsx
--------------------------------------------------------------------------------
/app/javascript/src/locales/translations.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/locales/translations.json
--------------------------------------------------------------------------------
/app/javascript/src/pages/AgentProfile.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/AgentProfile.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Api.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Api.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/AppContainer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/AppContainer.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/AppSettings.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/AppSettings.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Apps.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Apps.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Articles.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Articles.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Billing.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Billing.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/BlocksPlayground.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/BlocksPlayground.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Bots.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Bots.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Campaigns.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Campaigns.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Conversations.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Conversations.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Dashboard.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Dashboard.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Integrations.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Integrations.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/MessengerSettings.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/MessengerSettings.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/NewApp.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/NewApp.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/NotFound.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/NotFound.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Platform.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Platform.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Profile.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Profile.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Reports.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Reports.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Settings.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Settings.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Team.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Team.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/UnSubscribe.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/UnSubscribe.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/UpgradePage.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/UpgradePage.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/Webhooks.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/Webhooks.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/articles/editor.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/articles/editor.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/articles/new.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/articles/new.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/auth/login.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/auth/login.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/auth/logout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/auth/logout.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/auth/signUp.tsx:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/javascript/src/pages/bots/editor.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/bots/editor.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/bots/segment.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/bots/segment.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/bots/settings.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/bots/settings.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/campaigns/home.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/campaigns/home.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/playground/cm.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/playground/cm.css
--------------------------------------------------------------------------------
/app/javascript/src/pages/settings/Tags.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/settings/Tags.tsx
--------------------------------------------------------------------------------
/app/javascript/src/pages/settings/form.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/pages/settings/form.tsx
--------------------------------------------------------------------------------
/app/javascript/src/serviceWorker.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/serviceWorker.js
--------------------------------------------------------------------------------
/app/javascript/src/setupTests.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/setupTests.js
--------------------------------------------------------------------------------
/app/javascript/src/shared/FakeI18n.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/shared/FakeI18n.ts
--------------------------------------------------------------------------------
/app/javascript/src/shared/langsOptions.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/shared/langsOptions.ts
--------------------------------------------------------------------------------
/app/javascript/src/shared/logos.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/shared/logos.ts
--------------------------------------------------------------------------------
/app/javascript/src/shared/timezones.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/shared/timezones.ts
--------------------------------------------------------------------------------
/app/javascript/src/sounds/BING-E5.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/sounds/BING-E5.wav
--------------------------------------------------------------------------------
/app/javascript/src/sounds/BLIB.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/src/sounds/BLIB.wav
--------------------------------------------------------------------------------
/app/javascript/twilio_phone_package.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/javascript/twilio_phone_package.js
--------------------------------------------------------------------------------
/app/jobs/api_channel_notificator_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/api_channel_notificator_job.rb
--------------------------------------------------------------------------------
/app/jobs/app_user_event_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/app_user_event_job.rb
--------------------------------------------------------------------------------
/app/jobs/app_user_trigger_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/app_user_trigger_job.rb
--------------------------------------------------------------------------------
/app/jobs/application_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/application_job.rb
--------------------------------------------------------------------------------
/app/jobs/audit_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/audit_job.rb
--------------------------------------------------------------------------------
/app/jobs/contact_merger_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/contact_merger_job.rb
--------------------------------------------------------------------------------
/app/jobs/conversation_channel_sync_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/conversation_channel_sync_job.rb
--------------------------------------------------------------------------------
/app/jobs/data_enrichment_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/data_enrichment_job.rb
--------------------------------------------------------------------------------
/app/jobs/email_chat_notifier_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/email_chat_notifier_job.rb
--------------------------------------------------------------------------------
/app/jobs/event_trigger_processor_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/event_trigger_processor_job.rb
--------------------------------------------------------------------------------
/app/jobs/hook_message_receiver_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/hook_message_receiver_job.rb
--------------------------------------------------------------------------------
/app/jobs/list_importer_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/list_importer_job.rb
--------------------------------------------------------------------------------
/app/jobs/mail_importer_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/mail_importer_job.rb
--------------------------------------------------------------------------------
/app/jobs/mail_sender_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/mail_sender_job.rb
--------------------------------------------------------------------------------
/app/jobs/offline_checker_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/offline_checker_job.rb
--------------------------------------------------------------------------------
/app/jobs/outgoing_webhook_dispatcher_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/outgoing_webhook_dispatcher_job.rb
--------------------------------------------------------------------------------
/app/jobs/outgoing_webhook_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/outgoing_webhook_job.rb
--------------------------------------------------------------------------------
/app/jobs/ses_sender_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/ses_sender_job.rb
--------------------------------------------------------------------------------
/app/jobs/sns_receiver_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/jobs/sns_receiver_job.rb
--------------------------------------------------------------------------------
/app/mailers/application_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/mailers/application_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/assignee_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/mailers/assignee_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/campaign_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/mailers/campaign_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/chat_notifier_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/mailers/chat_notifier_mailer.rb
--------------------------------------------------------------------------------
/app/mailers/import_mailer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/mailers/import_mailer.rb
--------------------------------------------------------------------------------
/app/models/agent.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/agent.rb
--------------------------------------------------------------------------------
/app/models/agent_team.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/agent_team.rb
--------------------------------------------------------------------------------
/app/models/app.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/app.rb
--------------------------------------------------------------------------------
/app/models/app_package.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/app_package.rb
--------------------------------------------------------------------------------
/app/models/app_package_integration.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/app_package_integration.rb
--------------------------------------------------------------------------------
/app/models/app_user.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/app_user.rb
--------------------------------------------------------------------------------
/app/models/application_record.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/application_record.rb
--------------------------------------------------------------------------------
/app/models/article.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/article.rb
--------------------------------------------------------------------------------
/app/models/article_collection.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/article_collection.rb
--------------------------------------------------------------------------------
/app/models/article_content.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/article_content.rb
--------------------------------------------------------------------------------
/app/models/article_setting.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/article_setting.rb
--------------------------------------------------------------------------------
/app/models/assignment_rule.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/assignment_rule.rb
--------------------------------------------------------------------------------
/app/models/audit.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/audit.rb
--------------------------------------------------------------------------------
/app/models/auth_identity.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/auth_identity.rb
--------------------------------------------------------------------------------
/app/models/banner.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/banner.rb
--------------------------------------------------------------------------------
/app/models/bot_task.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/bot_task.rb
--------------------------------------------------------------------------------
/app/models/campaign.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/campaign.rb
--------------------------------------------------------------------------------
/app/models/collection_section.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/collection_section.rb
--------------------------------------------------------------------------------
/app/models/concerns/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/models/concerns/auditable_behavior.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/auditable_behavior.rb
--------------------------------------------------------------------------------
/app/models/concerns/avatar.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/avatar.rb
--------------------------------------------------------------------------------
/app/models/concerns/connectivity.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/connectivity.rb
--------------------------------------------------------------------------------
/app/models/concerns/email_validable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/email_validable.rb
--------------------------------------------------------------------------------
/app/models/concerns/eventable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/eventable.rb
--------------------------------------------------------------------------------
/app/models/concerns/globalize_accessors.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/globalize_accessors.rb
--------------------------------------------------------------------------------
/app/models/concerns/inbound_address.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/inbound_address.rb
--------------------------------------------------------------------------------
/app/models/concerns/notificable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/notificable.rb
--------------------------------------------------------------------------------
/app/models/concerns/subscribable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/subscribable.rb
--------------------------------------------------------------------------------
/app/models/concerns/tokenable.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/tokenable.rb
--------------------------------------------------------------------------------
/app/models/concerns/union_scope.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/union_scope.rb
--------------------------------------------------------------------------------
/app/models/concerns/user_handler.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/concerns/user_handler.rb
--------------------------------------------------------------------------------
/app/models/conversation.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/conversation.rb
--------------------------------------------------------------------------------
/app/models/conversation_channel.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/conversation_channel.rb
--------------------------------------------------------------------------------
/app/models/conversation_part.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/conversation_part.rb
--------------------------------------------------------------------------------
/app/models/conversation_part_block.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/conversation_part_block.rb
--------------------------------------------------------------------------------
/app/models/conversation_part_content.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/conversation_part_content.rb
--------------------------------------------------------------------------------
/app/models/conversation_part_event.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/conversation_part_event.rb
--------------------------------------------------------------------------------
/app/models/conversation_source.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/conversation_source.rb
--------------------------------------------------------------------------------
/app/models/event.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/event.rb
--------------------------------------------------------------------------------
/app/models/events/conversations_added.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/conversations_added.rb
--------------------------------------------------------------------------------
/app/models/events/conversations_assigned.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/conversations_assigned.rb
--------------------------------------------------------------------------------
/app/models/events/conversations_closed.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/conversations_closed.rb
--------------------------------------------------------------------------------
/app/models/events/conversations_reopened.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/conversations_reopened.rb
--------------------------------------------------------------------------------
/app/models/events/conversations_started.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/conversations_started.rb
--------------------------------------------------------------------------------
/app/models/events/email_changed.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/email_changed.rb
--------------------------------------------------------------------------------
/app/models/events/leads_convert.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/leads_convert.rb
--------------------------------------------------------------------------------
/app/models/events/leads_verified.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/leads_verified.rb
--------------------------------------------------------------------------------
/app/models/events/users_created.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/users_created.rb
--------------------------------------------------------------------------------
/app/models/events/visitors_convert.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/events/visitors_convert.rb
--------------------------------------------------------------------------------
/app/models/external_profile.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/external_profile.rb
--------------------------------------------------------------------------------
/app/models/lead.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/lead.rb
--------------------------------------------------------------------------------
/app/models/message.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/message.rb
--------------------------------------------------------------------------------
/app/models/metric.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/metric.rb
--------------------------------------------------------------------------------
/app/models/outgoing_webhook.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/outgoing_webhook.rb
--------------------------------------------------------------------------------
/app/models/plan.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/plan.rb
--------------------------------------------------------------------------------
/app/models/plugin.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/plugin.rb
--------------------------------------------------------------------------------
/app/models/preview_card.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/preview_card.rb
--------------------------------------------------------------------------------
/app/models/quick_reply.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/quick_reply.rb
--------------------------------------------------------------------------------
/app/models/role.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/role.rb
--------------------------------------------------------------------------------
/app/models/segment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/segment.rb
--------------------------------------------------------------------------------
/app/models/segment_comparator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/segment_comparator.rb
--------------------------------------------------------------------------------
/app/models/session_finder.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/session_finder.rb
--------------------------------------------------------------------------------
/app/models/team.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/team.rb
--------------------------------------------------------------------------------
/app/models/tour.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/tour.rb
--------------------------------------------------------------------------------
/app/models/user.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/user.rb
--------------------------------------------------------------------------------
/app/models/user_auto_message.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/user_auto_message.rb
--------------------------------------------------------------------------------
/app/models/visit.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/visit.rb
--------------------------------------------------------------------------------
/app/models/visitor.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/models/visitor.rb
--------------------------------------------------------------------------------
/app/policies/app_policy.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/policies/app_policy.rb
--------------------------------------------------------------------------------
/app/services/action_trigger.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/action_trigger.rb
--------------------------------------------------------------------------------
/app/services/action_trigger_factory.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/action_trigger_factory.rb
--------------------------------------------------------------------------------
/app/services/agent_dashboard.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/agent_dashboard.rb
--------------------------------------------------------------------------------
/app/services/app_package_dashboard.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/app_package_dashboard.rb
--------------------------------------------------------------------------------
/app/services/app_user_dashboard.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/app_user_dashboard.rb
--------------------------------------------------------------------------------
/app/services/base_service.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/base_service.rb
--------------------------------------------------------------------------------
/app/services/dante/converter.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dante/converter.rb
--------------------------------------------------------------------------------
/app/services/dante/embed_block_renderer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dante/embed_block_renderer.rb
--------------------------------------------------------------------------------
/app/services/dante/file_block_renderer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dante/file_block_renderer.rb
--------------------------------------------------------------------------------
/app/services/dante/image_block_renderer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dante/image_block_renderer.rb
--------------------------------------------------------------------------------
/app/services/dante/migrator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dante/migrator.rb
--------------------------------------------------------------------------------
/app/services/dante/renderer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dante/renderer.rb
--------------------------------------------------------------------------------
/app/services/dante/utils.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dante/utils.rb
--------------------------------------------------------------------------------
/app/services/dante/video_block_renderer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dante/video_block_renderer.rb
--------------------------------------------------------------------------------
/app/services/dashboard.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/dashboard.rb
--------------------------------------------------------------------------------
/app/services/digital_ocean/api.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/digital_ocean/api.rb
--------------------------------------------------------------------------------
/app/services/eu_countries.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/eu_countries.rb
--------------------------------------------------------------------------------
/app/services/fetch_link_card_service.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/fetch_link_card_service.rb
--------------------------------------------------------------------------------
/app/services/message_apis/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/message_apis/README.md
--------------------------------------------------------------------------------
/app/services/message_apis/base_package.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/message_apis/base_package.rb
--------------------------------------------------------------------------------
/app/services/message_apis/block_manager.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/message_apis/block_manager.rb
--------------------------------------------------------------------------------
/app/services/message_apis/csat/api.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/message_apis/csat/api.rb
--------------------------------------------------------------------------------
/app/services/message_apis/csat/presenter.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/message_apis/csat/presenter.rb
--------------------------------------------------------------------------------
/app/services/message_apis/helpers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/message_apis/helpers.rb
--------------------------------------------------------------------------------
/app/services/message_apis/oauth_utils.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/message_apis/oauth_utils.rb
--------------------------------------------------------------------------------
/app/services/message_apis/ui_catalog/api.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/message_apis/ui_catalog/api.rb
--------------------------------------------------------------------------------
/app/services/origin_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/origin_validator.rb
--------------------------------------------------------------------------------
/app/services/outgoing_webhook_service.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/outgoing_webhook_service.rb
--------------------------------------------------------------------------------
/app/services/payment_services/paddle.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/payment_services/paddle.rb
--------------------------------------------------------------------------------
/app/services/permissions_service.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/permissions_service.rb
--------------------------------------------------------------------------------
/app/services/plugin_schema_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/plugin_schema_validator.rb
--------------------------------------------------------------------------------
/app/services/plugins/tar_downloader.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/plugins/tar_downloader.rb
--------------------------------------------------------------------------------
/app/services/segment_factory.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/segment_factory.rb
--------------------------------------------------------------------------------
/app/services/user_finder.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/user_finder.rb
--------------------------------------------------------------------------------
/app/services/visit_collector.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/services/visit_collector.rb
--------------------------------------------------------------------------------
/app/validators/hex_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/validators/hex_validator.rb
--------------------------------------------------------------------------------
/app/validators/url_validator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/validators/url_validator.rb
--------------------------------------------------------------------------------
/app/views/app_packages/calendly/show.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/app_packages/calendly/show.erb
--------------------------------------------------------------------------------
/app/views/app_packages/typeform/show.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/app_packages/typeform/show.erb
--------------------------------------------------------------------------------
/app/views/app_packages/zoom/show.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/app_packages/zoom/show.erb
--------------------------------------------------------------------------------
/app/views/assignee_mailer/notify.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/assignee_mailer/notify.html.erb
--------------------------------------------------------------------------------
/app/views/campaign_mailer/newsletter.erb:
--------------------------------------------------------------------------------
1 | <%= @body %>
--------------------------------------------------------------------------------
/app/views/campaigns/_campaign.json.jbuilder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/_campaign.json.jbuilder
--------------------------------------------------------------------------------
/app/views/campaigns/_form.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/_form.html.erb
--------------------------------------------------------------------------------
/app/views/campaigns/edit.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/edit.html.erb
--------------------------------------------------------------------------------
/app/views/campaigns/iframe.html.haml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/iframe.html.haml
--------------------------------------------------------------------------------
/app/views/campaigns/index.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/index.html.erb
--------------------------------------------------------------------------------
/app/views/campaigns/index.json.jbuilder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/index.json.jbuilder
--------------------------------------------------------------------------------
/app/views/campaigns/new.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/new.html.erb
--------------------------------------------------------------------------------
/app/views/campaigns/premailer_preview.haml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/premailer_preview.haml
--------------------------------------------------------------------------------
/app/views/campaigns/show.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/show.html.erb
--------------------------------------------------------------------------------
/app/views/campaigns/show.json.jbuilder:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/campaigns/show.json.jbuilder
--------------------------------------------------------------------------------
/app/views/client_tester/_html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/client_tester/_html.erb
--------------------------------------------------------------------------------
/app/views/client_tester/_simple.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/client_tester/_simple.erb
--------------------------------------------------------------------------------
/app/views/client_tester/_store.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/client_tester/_store.erb
--------------------------------------------------------------------------------
/app/views/client_tester/_twitter.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/client_tester/_twitter.erb
--------------------------------------------------------------------------------
/app/views/client_tester/show.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/client_tester/show.erb
--------------------------------------------------------------------------------
/app/views/devise/confirmations/new.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/devise/confirmations/new.html.erb
--------------------------------------------------------------------------------
/app/views/devise/passwords/edit.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/devise/passwords/edit.html.erb
--------------------------------------------------------------------------------
/app/views/devise/passwords/new.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/devise/passwords/new.html.erb
--------------------------------------------------------------------------------
/app/views/devise/registrations/new.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/devise/registrations/new.html.erb
--------------------------------------------------------------------------------
/app/views/devise/sessions/new.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/devise/sessions/new.html.erb
--------------------------------------------------------------------------------
/app/views/devise/shared/_links.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/devise/shared/_links.html.erb
--------------------------------------------------------------------------------
/app/views/devise/unlocks/new.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/devise/unlocks/new.html.erb
--------------------------------------------------------------------------------
/app/views/home/package_frame.html.erb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/home/show.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/home/show.erb
--------------------------------------------------------------------------------
/app/views/import_mailer/notify.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/import_mailer/notify.erb
--------------------------------------------------------------------------------
/app/views/layouts/application.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/layouts/application.html.erb
--------------------------------------------------------------------------------
/app/views/layouts/articles.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/layouts/articles.html.erb
--------------------------------------------------------------------------------
/app/views/layouts/client.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/layouts/client.html.erb
--------------------------------------------------------------------------------
/app/views/layouts/devise.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/layouts/devise.erb
--------------------------------------------------------------------------------
/app/views/layouts/mailer.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/layouts/mailer.html.erb
--------------------------------------------------------------------------------
/app/views/layouts/mailer.text.erb:
--------------------------------------------------------------------------------
1 | <%= yield %>
2 |
--------------------------------------------------------------------------------
/app/views/shared/_flash.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/app/views/shared/_flash.erb
--------------------------------------------------------------------------------
/babel-esbuild.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/babel-esbuild.mjs
--------------------------------------------------------------------------------
/babel-plugin-macros.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/babel-plugin-macros.config.js
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/babel.config.js
--------------------------------------------------------------------------------
/bin/bundle:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/bundle
--------------------------------------------------------------------------------
/bin/dev:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/dev
--------------------------------------------------------------------------------
/bin/heroku-web:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/heroku-web
--------------------------------------------------------------------------------
/bin/heroku-worker:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/heroku-worker
--------------------------------------------------------------------------------
/bin/rails:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/rails
--------------------------------------------------------------------------------
/bin/rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/rake
--------------------------------------------------------------------------------
/bin/setup:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/setup
--------------------------------------------------------------------------------
/bin/spring:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/spring
--------------------------------------------------------------------------------
/bin/test:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/test
--------------------------------------------------------------------------------
/bin/update:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/update
--------------------------------------------------------------------------------
/bin/yarn:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/bin/yarn
--------------------------------------------------------------------------------
/config.ru:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config.ru
--------------------------------------------------------------------------------
/config/anycable.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/anycable.yml
--------------------------------------------------------------------------------
/config/application.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/application.rb
--------------------------------------------------------------------------------
/config/boot.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/boot.rb
--------------------------------------------------------------------------------
/config/cable.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/cable.yml
--------------------------------------------------------------------------------
/config/chaskiq_boot.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/chaskiq_boot.rb
--------------------------------------------------------------------------------
/config/credentials/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/credentials/README.md
--------------------------------------------------------------------------------
/config/database.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/database.yml
--------------------------------------------------------------------------------
/config/environment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/environment.rb
--------------------------------------------------------------------------------
/config/environments/development.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/environments/development.rb
--------------------------------------------------------------------------------
/config/environments/production.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/environments/production.rb
--------------------------------------------------------------------------------
/config/environments/staging.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/environments/staging.rb
--------------------------------------------------------------------------------
/config/environments/test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/environments/test.rb
--------------------------------------------------------------------------------
/config/i18n.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/i18n.yml
--------------------------------------------------------------------------------
/config/initializers/app_subdomains.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/app_subdomains.rb
--------------------------------------------------------------------------------
/config/initializers/assets.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/assets.rb
--------------------------------------------------------------------------------
/config/initializers/backtrace_silencers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/backtrace_silencers.rb
--------------------------------------------------------------------------------
/config/initializers/before_start.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/before_start.rb
--------------------------------------------------------------------------------
/config/initializers/bugsnag.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/bugsnag.rb
--------------------------------------------------------------------------------
/config/initializers/cookies_serializer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/cookies_serializer.rb
--------------------------------------------------------------------------------
/config/initializers/country_names.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/country_names.rb
--------------------------------------------------------------------------------
/config/initializers/cypress_on_rails.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/cypress_on_rails.rb
--------------------------------------------------------------------------------
/config/initializers/devise.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/devise.rb
--------------------------------------------------------------------------------
/config/initializers/doorkeeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/doorkeeper.rb
--------------------------------------------------------------------------------
/config/initializers/geocoder.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/geocoder.rb
--------------------------------------------------------------------------------
/config/initializers/geocoder_request.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/geocoder_request.rb
--------------------------------------------------------------------------------
/config/initializers/i18n.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/i18n.rb
--------------------------------------------------------------------------------
/config/initializers/inflections.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/inflections.rb
--------------------------------------------------------------------------------
/config/initializers/mime_types.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/mime_types.rb
--------------------------------------------------------------------------------
/config/initializers/nightfury.rb:
--------------------------------------------------------------------------------
1 | # frozen_string_literal: true
2 |
3 | Nightfury.redis.namespace = "nf-#{Rails.env}"
4 |
--------------------------------------------------------------------------------
/config/initializers/oembed.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/oembed.rb
--------------------------------------------------------------------------------
/config/initializers/pay.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/pay.rb
--------------------------------------------------------------------------------
/config/initializers/permissions_config.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/permissions_config.rb
--------------------------------------------------------------------------------
/config/initializers/permissions_policy.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/permissions_policy.rb
--------------------------------------------------------------------------------
/config/initializers/plans.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/plans.rb
--------------------------------------------------------------------------------
/config/initializers/plugin_verifier.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/plugin_verifier.rb
--------------------------------------------------------------------------------
/config/initializers/ransack.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/ransack.rb
--------------------------------------------------------------------------------
/config/initializers/redis.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/redis.rb
--------------------------------------------------------------------------------
/config/initializers/rotator.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/rotator.rb
--------------------------------------------------------------------------------
/config/initializers/s3.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/s3.rb
--------------------------------------------------------------------------------
/config/initializers/searchkick.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/searchkick.rb
--------------------------------------------------------------------------------
/config/initializers/session_store.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/session_store.rb
--------------------------------------------------------------------------------
/config/initializers/sidekiq.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/sidekiq.rb
--------------------------------------------------------------------------------
/config/initializers/trueemail.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/trueemail.rb
--------------------------------------------------------------------------------
/config/initializers/wrap_parameters.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/initializers/wrap_parameters.rb
--------------------------------------------------------------------------------
/config/locales/af.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/af.yml
--------------------------------------------------------------------------------
/config/locales/ar.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/ar.yml
--------------------------------------------------------------------------------
/config/locales/base.es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/base.es.yml
--------------------------------------------------------------------------------
/config/locales/ca.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/ca.yml
--------------------------------------------------------------------------------
/config/locales/cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/cs.yml
--------------------------------------------------------------------------------
/config/locales/da.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/da.yml
--------------------------------------------------------------------------------
/config/locales/de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/de.yml
--------------------------------------------------------------------------------
/config/locales/definitions.af.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.af.yml
--------------------------------------------------------------------------------
/config/locales/definitions.ar.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.ar.yml
--------------------------------------------------------------------------------
/config/locales/definitions.ca.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.ca.yml
--------------------------------------------------------------------------------
/config/locales/definitions.cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.cs.yml
--------------------------------------------------------------------------------
/config/locales/definitions.da.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.da.yml
--------------------------------------------------------------------------------
/config/locales/definitions.de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.de.yml
--------------------------------------------------------------------------------
/config/locales/definitions.el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.el.yml
--------------------------------------------------------------------------------
/config/locales/definitions.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.en.yml
--------------------------------------------------------------------------------
/config/locales/definitions.es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.es.yml
--------------------------------------------------------------------------------
/config/locales/definitions.fa.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.fa.yml
--------------------------------------------------------------------------------
/config/locales/definitions.fi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.fi.yml
--------------------------------------------------------------------------------
/config/locales/definitions.fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.fr.yml
--------------------------------------------------------------------------------
/config/locales/definitions.he.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.he.yml
--------------------------------------------------------------------------------
/config/locales/definitions.hu.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.hu.yml
--------------------------------------------------------------------------------
/config/locales/definitions.it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.it.yml
--------------------------------------------------------------------------------
/config/locales/definitions.ja.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.ja.yml
--------------------------------------------------------------------------------
/config/locales/definitions.ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.ko.yml
--------------------------------------------------------------------------------
/config/locales/definitions.nl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.nl.yml
--------------------------------------------------------------------------------
/config/locales/definitions.no.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.no.yml
--------------------------------------------------------------------------------
/config/locales/definitions.pl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.pl.yml
--------------------------------------------------------------------------------
/config/locales/definitions.pt.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.pt.yml
--------------------------------------------------------------------------------
/config/locales/definitions.ro.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.ro.yml
--------------------------------------------------------------------------------
/config/locales/definitions.ru.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.ru.yml
--------------------------------------------------------------------------------
/config/locales/definitions.sr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.sr.yml
--------------------------------------------------------------------------------
/config/locales/definitions.sv.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.sv.yml
--------------------------------------------------------------------------------
/config/locales/definitions.tr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.tr.yml
--------------------------------------------------------------------------------
/config/locales/definitions.uk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.uk.yml
--------------------------------------------------------------------------------
/config/locales/definitions.vi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.vi.yml
--------------------------------------------------------------------------------
/config/locales/definitions.zh.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/definitions.zh.yml
--------------------------------------------------------------------------------
/config/locales/devise.af.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.af.yml
--------------------------------------------------------------------------------
/config/locales/devise.ar.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.ar.yml
--------------------------------------------------------------------------------
/config/locales/devise.ca.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.ca.yml
--------------------------------------------------------------------------------
/config/locales/devise.cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.cs.yml
--------------------------------------------------------------------------------
/config/locales/devise.da.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.da.yml
--------------------------------------------------------------------------------
/config/locales/devise.de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.de.yml
--------------------------------------------------------------------------------
/config/locales/devise.el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.el.yml
--------------------------------------------------------------------------------
/config/locales/devise.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.en.yml
--------------------------------------------------------------------------------
/config/locales/devise.es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.es.yml
--------------------------------------------------------------------------------
/config/locales/devise.fa.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.fa.yml
--------------------------------------------------------------------------------
/config/locales/devise.fi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.fi.yml
--------------------------------------------------------------------------------
/config/locales/devise.fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.fr.yml
--------------------------------------------------------------------------------
/config/locales/devise.he.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.he.yml
--------------------------------------------------------------------------------
/config/locales/devise.hu.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.hu.yml
--------------------------------------------------------------------------------
/config/locales/devise.it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.it.yml
--------------------------------------------------------------------------------
/config/locales/devise.ja.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.ja.yml
--------------------------------------------------------------------------------
/config/locales/devise.ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.ko.yml
--------------------------------------------------------------------------------
/config/locales/devise.nl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.nl.yml
--------------------------------------------------------------------------------
/config/locales/devise.no.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.no.yml
--------------------------------------------------------------------------------
/config/locales/devise.pl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.pl.yml
--------------------------------------------------------------------------------
/config/locales/devise.pt.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.pt.yml
--------------------------------------------------------------------------------
/config/locales/devise.ro.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.ro.yml
--------------------------------------------------------------------------------
/config/locales/devise.ru.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.ru.yml
--------------------------------------------------------------------------------
/config/locales/devise.sr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.sr.yml
--------------------------------------------------------------------------------
/config/locales/devise.sv.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.sv.yml
--------------------------------------------------------------------------------
/config/locales/devise.tr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.tr.yml
--------------------------------------------------------------------------------
/config/locales/devise.uk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.uk.yml
--------------------------------------------------------------------------------
/config/locales/devise.vi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.vi.yml
--------------------------------------------------------------------------------
/config/locales/devise.zh.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise.zh.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.af.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.af.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.ar.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.ar.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.ca.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.ca.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.cs.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.da.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.da.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.de.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.el.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.en.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.es.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.fa.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.fa.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.fi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.fi.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.fr.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.he.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.he.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.hu.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.hu.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.it.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.ja.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.ja.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.ko.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.nl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.nl.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.no.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.no.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.pl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.pl.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.pt.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.pt.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.ro.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.ro.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.ru.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.ru.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.sr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.sr.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.sv.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.sv.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.tr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.tr.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.uk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.uk.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.vi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.vi.yml
--------------------------------------------------------------------------------
/config/locales/devise_invitable.zh.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/devise_invitable.zh.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.af.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.af.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.ar.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.ar.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.ca.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.ca.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.cs.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.da.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.da.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.de.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.el.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.en.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.es.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.fa.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.fa.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.fi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.fi.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.fr.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.he.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.he.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.hu.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.hu.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.it.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.ja.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.ja.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.ko.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.nl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.nl.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.no.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.no.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.pl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.pl.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.pt.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.pt.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.ro.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.ro.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.ru.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.ru.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.sr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.sr.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.sv.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.sv.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.tr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.tr.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.uk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.uk.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.vi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.vi.yml
--------------------------------------------------------------------------------
/config/locales/doorkeeper.zh.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/doorkeeper.zh.yml
--------------------------------------------------------------------------------
/config/locales/el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/el.yml
--------------------------------------------------------------------------------
/config/locales/en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/en.yml
--------------------------------------------------------------------------------
/config/locales/es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/es.yml
--------------------------------------------------------------------------------
/config/locales/fa.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/fa.yml
--------------------------------------------------------------------------------
/config/locales/fi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/fi.yml
--------------------------------------------------------------------------------
/config/locales/fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/fr.yml
--------------------------------------------------------------------------------
/config/locales/he.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/he.yml
--------------------------------------------------------------------------------
/config/locales/hints.af.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.af.yml
--------------------------------------------------------------------------------
/config/locales/hints.ar.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.ar.yml
--------------------------------------------------------------------------------
/config/locales/hints.ca.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.ca.yml
--------------------------------------------------------------------------------
/config/locales/hints.cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.cs.yml
--------------------------------------------------------------------------------
/config/locales/hints.da.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.da.yml
--------------------------------------------------------------------------------
/config/locales/hints.de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.de.yml
--------------------------------------------------------------------------------
/config/locales/hints.el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.el.yml
--------------------------------------------------------------------------------
/config/locales/hints.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.en.yml
--------------------------------------------------------------------------------
/config/locales/hints.es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.es.yml
--------------------------------------------------------------------------------
/config/locales/hints.fa.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.fa.yml
--------------------------------------------------------------------------------
/config/locales/hints.fi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.fi.yml
--------------------------------------------------------------------------------
/config/locales/hints.fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.fr.yml
--------------------------------------------------------------------------------
/config/locales/hints.he.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.he.yml
--------------------------------------------------------------------------------
/config/locales/hints.hu.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.hu.yml
--------------------------------------------------------------------------------
/config/locales/hints.it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.it.yml
--------------------------------------------------------------------------------
/config/locales/hints.ja.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.ja.yml
--------------------------------------------------------------------------------
/config/locales/hints.ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.ko.yml
--------------------------------------------------------------------------------
/config/locales/hints.nl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.nl.yml
--------------------------------------------------------------------------------
/config/locales/hints.no.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.no.yml
--------------------------------------------------------------------------------
/config/locales/hints.pl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.pl.yml
--------------------------------------------------------------------------------
/config/locales/hints.pt.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.pt.yml
--------------------------------------------------------------------------------
/config/locales/hints.ro.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.ro.yml
--------------------------------------------------------------------------------
/config/locales/hints.ru.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.ru.yml
--------------------------------------------------------------------------------
/config/locales/hints.sr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.sr.yml
--------------------------------------------------------------------------------
/config/locales/hints.sv.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.sv.yml
--------------------------------------------------------------------------------
/config/locales/hints.tr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.tr.yml
--------------------------------------------------------------------------------
/config/locales/hints.uk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.uk.yml
--------------------------------------------------------------------------------
/config/locales/hints.vi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.vi.yml
--------------------------------------------------------------------------------
/config/locales/hints.zh.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hints.zh.yml
--------------------------------------------------------------------------------
/config/locales/hu.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/hu.yml
--------------------------------------------------------------------------------
/config/locales/it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/it.yml
--------------------------------------------------------------------------------
/config/locales/ja.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/ja.yml
--------------------------------------------------------------------------------
/config/locales/ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/ko.yml
--------------------------------------------------------------------------------
/config/locales/messenger.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/messenger.en.yml
--------------------------------------------------------------------------------
/config/locales/messenger.es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/messenger.es.yml
--------------------------------------------------------------------------------
/config/locales/messenger.fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/messenger.fr.yml
--------------------------------------------------------------------------------
/config/locales/nl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/nl.yml
--------------------------------------------------------------------------------
/config/locales/no.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/no.yml
--------------------------------------------------------------------------------
/config/locales/pl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/pl.yml
--------------------------------------------------------------------------------
/config/locales/pt.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/pt.yml
--------------------------------------------------------------------------------
/config/locales/ro.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/ro.yml
--------------------------------------------------------------------------------
/config/locales/ru.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/ru.yml
--------------------------------------------------------------------------------
/config/locales/sr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/sr.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.af.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.af.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.ar.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.ar.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.ca.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.ca.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.cs.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.cs.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.da.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.da.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.de.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.de.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.el.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.el.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.en.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.es.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.es.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.fa.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.fa.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.fi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.fi.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.fr.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.he.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.he.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.hu.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.hu.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.it.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.it.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.ja.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.ja.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.ko.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.ko.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.nl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.nl.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.no.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.no.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.pl.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.pl.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.pt.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.pt.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.ro.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.ro.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.ru.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.ru.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.sr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.sr.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.sv.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.sv.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.tr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.tr.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.uk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.uk.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.vi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.vi.yml
--------------------------------------------------------------------------------
/config/locales/subscriptions.zh.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/subscriptions.zh.yml
--------------------------------------------------------------------------------
/config/locales/sv.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/sv.yml
--------------------------------------------------------------------------------
/config/locales/tr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/tr.yml
--------------------------------------------------------------------------------
/config/locales/uk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/uk.yml
--------------------------------------------------------------------------------
/config/locales/vi.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/vi.yml
--------------------------------------------------------------------------------
/config/locales/zh.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/locales/zh.yml
--------------------------------------------------------------------------------
/config/middleware/maintenance_mode.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/middleware/maintenance_mode.rb
--------------------------------------------------------------------------------
/config/permissions.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/permissions.yml
--------------------------------------------------------------------------------
/config/puma.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/puma.rb
--------------------------------------------------------------------------------
/config/redis/shared.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/redis/shared.yml
--------------------------------------------------------------------------------
/config/routes.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/routes.rb
--------------------------------------------------------------------------------
/config/scout_apm.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/scout_apm.yml
--------------------------------------------------------------------------------
/config/sidekiq.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/sidekiq.yml
--------------------------------------------------------------------------------
/config/spring.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/spring.rb
--------------------------------------------------------------------------------
/config/storage.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/storage.yml
--------------------------------------------------------------------------------
/config/subscriptions.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/subscriptions.yml
--------------------------------------------------------------------------------
/config/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/config/tailwind.config.js
--------------------------------------------------------------------------------
/crowdin.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/crowdin.yml
--------------------------------------------------------------------------------
/cypress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/cypress.config.ts
--------------------------------------------------------------------------------
/db/migrate/20180529010922_create_apps.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/migrate/20180529010922_create_apps.rb
--------------------------------------------------------------------------------
/db/migrate/20180616202654_create_metrics.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/migrate/20180616202654_create_metrics.rb
--------------------------------------------------------------------------------
/db/migrate/20180617011650_create_roles.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/migrate/20180617011650_create_roles.rb
--------------------------------------------------------------------------------
/db/migrate/20190618231735_create_visits.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/migrate/20190618231735_create_visits.rb
--------------------------------------------------------------------------------
/db/migrate/20190629044525_create_events.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/migrate/20190629044525_create_events.rb
--------------------------------------------------------------------------------
/db/migrate/20211118032503_create_audits.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/migrate/20211118032503_create_audits.rb
--------------------------------------------------------------------------------
/db/migrate/20220923035841_create_teams.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/migrate/20220923035841_create_teams.rb
--------------------------------------------------------------------------------
/db/migrate/20230405043104_create_plugins.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/migrate/20230405043104_create_plugins.rb
--------------------------------------------------------------------------------
/db/schema.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/schema.rb
--------------------------------------------------------------------------------
/db/seeds.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/db/seeds.rb
--------------------------------------------------------------------------------
/docker-compose.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/docker-compose.yml
--------------------------------------------------------------------------------
/esbuild.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/esbuild.config.mjs
--------------------------------------------------------------------------------
/esbuild/process-shim.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/esbuild/process-shim.js
--------------------------------------------------------------------------------
/hooks/build:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/hooks/build
--------------------------------------------------------------------------------
/index.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/index.d.ts
--------------------------------------------------------------------------------
/lerna-debug.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lerna-debug.log
--------------------------------------------------------------------------------
/lerna.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lerna.json
--------------------------------------------------------------------------------
/lib/app_packages_catalog.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/app_packages_catalog.rb
--------------------------------------------------------------------------------
/lib/assets/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/lib/auth0_web_token.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/auth0_web_token.rb
--------------------------------------------------------------------------------
/lib/dummy_name.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/dummy_name.rb
--------------------------------------------------------------------------------
/lib/generators/chaskiq_plugin/USAGE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/generators/chaskiq_plugin/USAGE
--------------------------------------------------------------------------------
/lib/link_renamer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/link_renamer.rb
--------------------------------------------------------------------------------
/lib/omniauth/strategies/doorkeeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/omniauth/strategies/doorkeeper.rb
--------------------------------------------------------------------------------
/lib/rack/health_check.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/rack/health_check.rb
--------------------------------------------------------------------------------
/lib/subdomain_routes.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/subdomain_routes.rb
--------------------------------------------------------------------------------
/lib/tasks/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/lib/tasks/admin_generator.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/tasks/admin_generator.rake
--------------------------------------------------------------------------------
/lib/tasks/graphql.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/tasks/graphql.rake
--------------------------------------------------------------------------------
/lib/tasks/user_generator.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/tasks/user_generator.rake
--------------------------------------------------------------------------------
/lib/tasks/utils.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/lib/tasks/utils.rake
--------------------------------------------------------------------------------
/log/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/package.json
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/postcss.config.js
--------------------------------------------------------------------------------
/prettier.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/prettier.config.js
--------------------------------------------------------------------------------
/public/404.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/404.html
--------------------------------------------------------------------------------
/public/422.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/422.html
--------------------------------------------------------------------------------
/public/500.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/500.html
--------------------------------------------------------------------------------
/public/apple-touch-icon-precomposed.png:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/apple-touch-icon.png:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/logo-gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/logo-gray.png
--------------------------------------------------------------------------------
/public/maintenance.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/maintenance.html
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/robots.txt
--------------------------------------------------------------------------------
/public/schema.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/schema.json
--------------------------------------------------------------------------------
/public/sounds/BING-E5.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/sounds/BING-E5.wav
--------------------------------------------------------------------------------
/public/sounds/BLIB.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/sounds/BLIB.wav
--------------------------------------------------------------------------------
/public/sounds/GLAZE.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/sounds/GLAZE.wav
--------------------------------------------------------------------------------
/public/sounds/NORMAN.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/sounds/NORMAN.wav
--------------------------------------------------------------------------------
/public/sounds/ringtone.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/public/sounds/ringtone.wav
--------------------------------------------------------------------------------
/rollup.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/rollup.config.js
--------------------------------------------------------------------------------
/spec/controllers/api/v1/hooks/csat_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/api/v1/hooks/csat_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/api/v1/hooks/slack_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/api/v1/hooks/slack_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/api/v1/hooks/zoom_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/api/v1/hooks/zoom_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/graphql/agent_spec.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/spec/controllers/graphql/app_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/graphql/app_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/graphql/app_user_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/graphql/app_user_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/graphql/article_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/graphql/article_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/graphql/segments_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/graphql/segments_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/oembed_controller_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/oembed_controller_spec.rb
--------------------------------------------------------------------------------
/spec/controllers/widgets_controller_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/controllers/widgets_controller_spec.rb
--------------------------------------------------------------------------------
/spec/cypress.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress.json
--------------------------------------------------------------------------------
/spec/cypress/app_commands/banner_command.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/app_commands/banner_command.rb
--------------------------------------------------------------------------------
/spec/cypress/app_commands/clean.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/app_commands/clean.rb
--------------------------------------------------------------------------------
/spec/cypress/app_commands/eval.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/app_commands/eval.rb
--------------------------------------------------------------------------------
/spec/cypress/app_commands/factory_bot.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/app_commands/factory_bot.rb
--------------------------------------------------------------------------------
/spec/cypress/app_commands/log_fail.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/app_commands/log_fail.rb
--------------------------------------------------------------------------------
/spec/cypress/app_commands/scenarios/user_auto_message.rb:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/spec/cypress/app_commands/tour_command.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/app_commands/tour_command.rb
--------------------------------------------------------------------------------
/spec/cypress/cypress_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/cypress_helper.rb
--------------------------------------------------------------------------------
/spec/cypress/fixtures/example.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/fixtures/example.json
--------------------------------------------------------------------------------
/spec/cypress/integration/app/apps_spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/integration/app/apps_spec.js
--------------------------------------------------------------------------------
/spec/cypress/integration/app/login_spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/integration/app/login_spec.js
--------------------------------------------------------------------------------
/spec/cypress/plugins/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/plugins/index.js
--------------------------------------------------------------------------------
/spec/cypress/support/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/cypress/support/index.js
--------------------------------------------------------------------------------
/spec/factories/factories.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/factories/factories.rb
--------------------------------------------------------------------------------
/spec/fixtures/csv_example copy.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/fixtures/csv_example copy.csv
--------------------------------------------------------------------------------
/spec/fixtures/csv_example.csv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/fixtures/csv_example.csv
--------------------------------------------------------------------------------
/spec/fixtures/csv_example.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/fixtures/csv_example.xlsx
--------------------------------------------------------------------------------
/spec/fixtures/emails/aws_sample.eml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/fixtures/emails/aws_sample.eml
--------------------------------------------------------------------------------
/spec/fixtures/requests/idn.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/fixtures/requests/idn.txt
--------------------------------------------------------------------------------
/spec/importers/list_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/importers/list_spec.rb
--------------------------------------------------------------------------------
/spec/jobs/email_chat_notifier_job_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/jobs/email_chat_notifier_job_spec.rb
--------------------------------------------------------------------------------
/spec/jobs/list_importer_job_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/jobs/list_importer_job_spec.rb
--------------------------------------------------------------------------------
/spec/jobs/mail_importer_job_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/jobs/mail_importer_job_spec.rb
--------------------------------------------------------------------------------
/spec/jobs/offline_checker_job_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/jobs/offline_checker_job_spec.rb
--------------------------------------------------------------------------------
/spec/jobs/ses_sender_job_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/jobs/ses_sender_job_spec.rb
--------------------------------------------------------------------------------
/spec/jobs/sns_receiver_job_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/jobs/sns_receiver_job_spec.rb
--------------------------------------------------------------------------------
/spec/mailers/campaign_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/mailers/campaign_spec.rb
--------------------------------------------------------------------------------
/spec/mailers/chat_notifier_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/mailers/chat_notifier_spec.rb
--------------------------------------------------------------------------------
/spec/mailers/previews/campaign_preview.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/mailers/previews/campaign_preview.rb
--------------------------------------------------------------------------------
/spec/models/agent_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/agent_spec.rb
--------------------------------------------------------------------------------
/spec/models/agent_team_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/agent_team_spec.rb
--------------------------------------------------------------------------------
/spec/models/app_package_integration_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/app_package_integration_spec.rb
--------------------------------------------------------------------------------
/spec/models/app_package_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/app_package_spec.rb
--------------------------------------------------------------------------------
/spec/models/app_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/app_spec.rb
--------------------------------------------------------------------------------
/spec/models/app_user_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/app_user_spec.rb
--------------------------------------------------------------------------------
/spec/models/article_collection_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/article_collection_spec.rb
--------------------------------------------------------------------------------
/spec/models/article_content_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/article_content_spec.rb
--------------------------------------------------------------------------------
/spec/models/article_setting_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/article_setting_spec.rb
--------------------------------------------------------------------------------
/spec/models/article_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/article_spec.rb
--------------------------------------------------------------------------------
/spec/models/assignment_rule_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/assignment_rule_spec.rb
--------------------------------------------------------------------------------
/spec/models/audit_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/audit_spec.rb
--------------------------------------------------------------------------------
/spec/models/auth_identity_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/auth_identity_spec.rb
--------------------------------------------------------------------------------
/spec/models/bot_task_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/bot_task_spec.rb
--------------------------------------------------------------------------------
/spec/models/campaign_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/campaign_spec.rb
--------------------------------------------------------------------------------
/spec/models/collection_section_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/collection_section_spec.rb
--------------------------------------------------------------------------------
/spec/models/conversation_channel_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/conversation_channel_spec.rb
--------------------------------------------------------------------------------
/spec/models/conversation_part_block_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/conversation_part_block_spec.rb
--------------------------------------------------------------------------------
/spec/models/conversation_part_event_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/conversation_part_event_spec.rb
--------------------------------------------------------------------------------
/spec/models/conversation_part_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/conversation_part_spec.rb
--------------------------------------------------------------------------------
/spec/models/conversation_source_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/conversation_source_spec.rb
--------------------------------------------------------------------------------
/spec/models/conversation_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/conversation_spec.rb
--------------------------------------------------------------------------------
/spec/models/event_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/event_spec.rb
--------------------------------------------------------------------------------
/spec/models/external_profile_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/external_profile_spec.rb
--------------------------------------------------------------------------------
/spec/models/metric_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/metric_spec.rb
--------------------------------------------------------------------------------
/spec/models/outgoing_webhook_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/outgoing_webhook_spec.rb
--------------------------------------------------------------------------------
/spec/models/plugin_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/plugin_spec.rb
--------------------------------------------------------------------------------
/spec/models/preview_card_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/preview_card_spec.rb
--------------------------------------------------------------------------------
/spec/models/quick_reply_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/quick_reply_spec.rb
--------------------------------------------------------------------------------
/spec/models/role_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/role_spec.rb
--------------------------------------------------------------------------------
/spec/models/segment_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/segment_spec.rb
--------------------------------------------------------------------------------
/spec/models/team_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/team_spec.rb
--------------------------------------------------------------------------------
/spec/models/tour_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/tour_spec.rb
--------------------------------------------------------------------------------
/spec/models/user_auto_message_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/user_auto_message_spec.rb
--------------------------------------------------------------------------------
/spec/models/visit_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/models/visit_spec.rb
--------------------------------------------------------------------------------
/spec/rails_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/rails_helper.rb
--------------------------------------------------------------------------------
/spec/services/config_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/services/config_spec.rb
--------------------------------------------------------------------------------
/spec/services/dante_renderer_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/services/dante_renderer_spec.rb
--------------------------------------------------------------------------------
/spec/services/fetch_link_service_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/services/fetch_link_service_spec.rb
--------------------------------------------------------------------------------
/spec/services/origin_validator_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/services/origin_validator_spec.rb
--------------------------------------------------------------------------------
/spec/services/schema_validations_spec.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/services/schema_validations_spec.rb
--------------------------------------------------------------------------------
/spec/services/visit_collector.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/services/visit_collector.rb
--------------------------------------------------------------------------------
/spec/spec_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/spec_helper.rb
--------------------------------------------------------------------------------
/spec/support/graphql_queries.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/support/graphql_queries.rb
--------------------------------------------------------------------------------
/spec/support/spreadsheet.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/support/spreadsheet.rb
--------------------------------------------------------------------------------
/spec/support/stub_current_user.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/support/stub_current_user.rb
--------------------------------------------------------------------------------
/spec/system/test_spec.rb--disabled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/spec/system/test_spec.rb--disabled
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/tsconfig.json
--------------------------------------------------------------------------------
/vendor/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/data/GeoIPv6.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/vendor/data/GeoIPv6.dat
--------------------------------------------------------------------------------
/vendor/data/GeoLiteCityv6.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/vendor/data/GeoLiteCityv6.dat
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chaskiq/chaskiq/HEAD/yarn.lock
--------------------------------------------------------------------------------